mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 21:48:16 -08:00
12 lines
271 B
Ruby
12 lines
271 B
Ruby
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
|