1
0
Fork 0
dokkan-data-rails/db/migrate/20151006175332_create_medals.rb

10 lines
184 B
Ruby

class CreateMedals < ActiveRecord::Migration
def change
create_table :medals do |t|
t.string :name
t.text :location
t.timestamps null: false
end
end
end