1
0
mirror of https://github.com/jcwimer/wrestlingApp synced 2026-03-25 01:14:43 +00:00
Files
wrestlingdev.com/db/migrate/20140120175252_create_tournaments.rb
2014-01-22 09:02:12 -05:00

13 lines
239 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
end
end
end