mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-03-25 01:14:43 +00:00
13 lines
250 B
Ruby
13 lines
250 B
Ruby
class CreateTournaments < ActiveRecord::Migration
|
|
def change
|
|
create_table :tournaments do |t|
|
|
t.string :name
|
|
t.string :address
|
|
t.string :director
|
|
t.string :director_email
|
|
|
|
t.timestamps null: true
|
|
end
|
|
end
|
|
end
|