tabletop-companion/db/migrate/20240526084840_create_game_...

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