3,765
回編集
差分
→バックアップ
$ rails db:migrate RAILS_ENV=production
=== シーケンス操作 ===
確認
<nowiki>=# select * from others_id_seq ;
last_value | log_cnt | is_called
------------+---------+-----------
14 | 30 | t</nowiki>
最大値確認
<nowiki>=# select max(id) from others;
max
------
5428</nowiki>
変更
<nowiki>=# SELECT setval('others_id_seq', 5428, true);
setval
--------
5428</nowiki>
=== バックアップ ===