stores a proposal notification

This commit is contained in:
rgarcia
2016-06-01 13:30:44 +02:00
parent 1975018d6a
commit f5375e813d
14 changed files with 155 additions and 4 deletions

View File

@@ -0,0 +1,12 @@
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