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

13 lines
255 B
Ruby

class CreateTournaments < ActiveRecord::Migration[4.2]
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