1
0
mirror of https://github.com/jcwimer/wrestlingApp synced 2026-03-24 17:04:43 +00:00
Files
wrestlingdev.com/db/migrate/20160106031418_create_school_delegates.rb

11 lines
216 B
Ruby

class CreateSchoolDelegates < ActiveRecord::Migration[4.2]
def change
create_table :school_delegates do |t|
t.integer :user_id
t.integer :school_id
t.timestamps null: false
end
end
end