OKADA LABO

マイグレーションファイルの記述例

使用例
:integer ただの数字 ユーザーのidとか
:string 文字(少なめ) ユーザー名、パスワード
:text 文字(多め) 投稿文
:boolean 真か偽か 真偽
:timestamp 日付と時刻 作成日時、更新日時

 

class CreateSamples < ActiveRecord::Migration
    def change
      create_table :samples do |t|
        t.string      :name
        t.text        :text
        t.text        :image
        t.timestamps
      end
    end
  end