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

12 lines
209 B
Ruby

# frozen_string_literal: true
class CreateGameSystems < ActiveRecord::Migration[7.1]
def change
create_table :game_systems do |t|
t.string :name, null: false
t.timestamps
end
end
end