Files
codeocean/db/migrate/20150128083123_create_teams.rb
2015-01-28 12:28:09 +01:00

9 lines
146 B
Ruby

class CreateTeams < ActiveRecord::Migration
def change
create_table :teams do |t|
t.string :name
t.timestamps
end
end
end