差分

Tep3-onk-2

370 バイト追加, 2022年12月26日 (月) 10:48
バックアップ
$ 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>
=== バックアップ ===