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

10 lines
178 B
Ruby
Raw Normal View History

2024-05-26 08:51:31 +00:00
class CreateGameSystems < ActiveRecord::Migration[7.1]
def change
create_table :game_systems do |t|
t.string :name, null: false
t.timestamps
end
end
end