テーブルの名前を変更します
rename_table :posts, :messages
ただし、railsはposts_id_seqおよびposts.id修飾子を生成します。
db=# \d+ posts
Table "public.posts"
Column | Type | Modifiers | Storage | Description
id | integer | not null default nextval('posts_id_seq'::regclass) | plain |
Indexes:
"posts_pkey" PRIMARY KEY, btree (id)
テーブルの名前変更を修正するにはどうすればよいですか?
ルビー1.8.7
レール2.3