mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-03-25 01:14:43 +00:00
11 lines
211 B
Ruby
11 lines
211 B
Ruby
class CreateSchoolDelegates < ActiveRecord::Migration
|
|
def change
|
|
create_table :school_delegates do |t|
|
|
t.integer :user_id
|
|
t.integer :school_id
|
|
|
|
t.timestamps null: false
|
|
end
|
|
end
|
|
end
|