9 lines
151 B
Ruby
9 lines
151 B
Ruby
|
|
class CreateGames < ActiveRecord::Migration[8.1]
|
||
|
|
def change
|
||
|
|
create_table :games do |t|
|
||
|
|
t.string :name
|
||
|
|
t.timestamps
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|