mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 21:48:16 -08:00
11 lines
225 B
Ruby
11 lines
225 B
Ruby
class CreateUserSchools < ActiveRecord::Migration[5.0]
|
|
def change
|
|
create_table :user_schools do |t|
|
|
t.integer :user_id
|
|
t.integer :school_id
|
|
t.integer :district_id
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|