mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-13 01:10:39 -07:00
recipient lists
This commit is contained in:
parent
ab6cefd055
commit
37e01c024b
24 changed files with 491 additions and 1 deletions
12
db/migrate/20170302154609_create_recipient_lists.rb
Normal file
12
db/migrate/20170302154609_create_recipient_lists.rb
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue