Retrospring/db/migrate/20141110210154_create_inbox...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
241 B
Ruby
Raw Normal View History

2023-10-19 16:37:34 -07:00
# frozen_string_literal: true
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