在「Rails筆記01」基本指令中提到的Model建立完畢後,去看 /db/migrate/201xxxxxxxxxxx_create_資料庫名.rb會有一段程式碼。
class CreatePhotos < ActiveRecord::Migration[5.1]
def change
create_table :<span class="point">model名</span>s do |t|
t.timestamps
end
end
end
此時在create_table
下方追加想要的資料欄位,例如以下。
class CreatePhotos < ActiveRecord::Migration[5.1]
def change
create_table :<span class="point">資料庫名</span> do |t|
t.string :title
t.date :date
t.text :description
t.string :file_location
<code class="com"># 資料型態 :欄位名稱</code>
t.timestamps
end
end
end
最後使用rails db:migrate
指令遷移至資料庫中。