recipient lists

This commit is contained in:
Jared Cosulich 2017-03-02 12:00:40 -05:00
parent ab6cefd055
commit 37e01c024b
24 changed files with 491 additions and 1 deletions

View file

@ -0,0 +1,12 @@
class CreateRecipientLists < ActiveRecord::Migration[5.0]
def change
create_table :recipient_lists do |t|
t.references :school, foreign_key: true
t.string :name
t.text :description
t.text :recipient_ids
t.timestamps
end
end
end