mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-19 05:56:03 +01:00
13 lines
241 B
Ruby
13 lines
241 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CreateInboxes < ActiveRecord::Migration[4.2]
|
|
def change
|
|
create_table :inboxes do |t|
|
|
t.integer :user_id
|
|
t.integer :question_id
|
|
t.boolean :new
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|