10 lines
153 B
Ruby
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
|