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

11 lines
184 B
Ruby
Raw Normal View History

2015-10-06 13:55:12 -04:00
class CreateMedals < ActiveRecord::Migration
def change
create_table :medals do |t|
t.string :name
t.text :location
t.timestamps null: false
end
end
end