我試圖在遷移過程中創建記錄,但我遇到了麻煩(之前在我的高級開發人員的幫助下),並且試圖複製他完成的工作,但似乎沒有要在數據庫中創建屋頂安裝記錄...在遷移過程中創建初始記錄
繼承人的遷移文件
class PageEditor < ActiveRecord::Base; end
def create_initial_record
PageEditor.create({
:title => 'Events & Training',
:content => ''
})
PageEditor.create({
:title => 'Roof Mount - Training',
:content => ''
})
end
class CreatePageEditors < ActiveRecord::Migration
def up
create_table :page_editors do |t|
t.string :title
t.text :content
t.timestamps
end
create_initial_record
end
def down
drop_table :page_editors
end
end
所以我說 - 培訓的一部分,然後跑了耙分貝:遷移,但它不創建記錄並且不會顯示在我的索引頁上.......
我覺得我和你提到的帖子做同樣的事情,但它不會因爲某些原因添加該字段.....任何幫助將不勝感激 – user1502223 2013-04-24 20:37:56