Retrospring/db/migrate/20141110210154_create_inbox...

12 lines
210 B
Ruby
Raw Normal View History

class CreateInboxes < ActiveRecord::Migration[4.2]
2014-11-10 14:45:36 -08:00
def change
create_table :inboxes do |t|
t.integer :user_id
t.integer :question_id
t.boolean :new
t.timestamps
end
end
end