0
我的問題很簡單。我創建了這個遷移文件,我的移動列沒有改變,但創建了def change
。是否因爲導軌被忽略def up
和def down
?如果是的話爲什麼遷移步驟變化,上下
def change
add_column :posts, :address, :string
end
def up
execute 'ALTER TABLE posts ALTER COLUMN mobile TYPE integer USING (mobile::integer)'
end
def down
execute 'ALTER TABLE posts ALTER COLUMN mobile TYPE text USING (mobile::text)'
end