0

我想为我网站上的一堆不同项目添加一个新列。

class AddCreatedatToStreamItems < ActiveRecord::Migration
  def change
    add_column :stream_artworks, :createdat, :date
    add_column :stream_experiments, :createdat, :date
    add_column :stream_photographies, :createdat, :date
    add_column :stream_webs, :createdat, :date
    add_column :stream_socials, :createdat, :date
  end
end
4

1 回答 1

0

迁移的文件名是否有可能是“123123_add_dates.rb”而不是“123123_add_createdat_to_stream_items.rb”(其中“123123”是一串数字,不一定是“123123”)?

迁移的类名和文件名需要以 CamelCase => camel_case 方式匹配。

于 2012-11-18T18:28:52.097 回答