mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-02-12 22:13:38 +01:00
12 lines
205 B
Ruby
12 lines
205 B
Ruby
|
class CreateInboxes < ActiveRecord::Migration
|
||
|
def change
|
||
|
create_table :inboxes do |t|
|
||
|
t.integer :user_id
|
||
|
t.integer :question_id
|
||
|
t.boolean :new
|
||
|
|
||
|
t.timestamps
|
||
|
end
|
||
|
end
|
||
|
end
|