blob: de30492bcae491eee6af9ee6156260af4c58262c (
plain) (
tree)
|
|
class CreateGames < ActiveRecord::Migration[5.2]
def change
create_table :games do |t|
t.string :title
t.string :status
t.text :progress
t.text :description
t.integer :score
t.timestamps
end
end
end
|