thirteen-tien-len/db/migrate/20150104065001_create_games.rb
2019-10-29 06:12:08 -07:00

10 lines
153 B
Ruby

class CreateGames < ActiveRecord::Migration[5.2]
def change
create_table :games do |t|
t.string :title
t.timestamps
end
end
end