Files
codeocean/db/migrate/20150128083123_create_teams.rb

9 lines
151 B
Ruby

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