Files
nairobi/db/migrate/20160601103338_create_proposal_notifications.rb
2016-06-01 17:23:56 +02:00

13 lines
268 B
Ruby

class CreateProposalNotifications < ActiveRecord::Migration
def change
create_table :proposal_notifications do |t|
t.string :title
t.text :body
t.integer :author_id
t.integer :proposal_id
t.timestamps null: false
end
end
end