10 lines
178 B
Ruby
10 lines
178 B
Ruby
|
class CreateGameSystems < ActiveRecord::Migration[7.1]
|
||
|
def change
|
||
|
create_table :game_systems do |t|
|
||
|
t.string :name, null: false
|
||
|
|
||
|
t.timestamps
|
||
|
end
|
||
|
end
|
||
|
end
|