clocks_server/db/migrate/20260202002823_create_games.rb

9 lines
151 B
Ruby
Raw Permalink Normal View History

2026-02-01 19:45:29 -05:00
class CreateGames < ActiveRecord::Migration[8.1]
def change
create_table :games do |t|
t.string :name
t.timestamps
end
end
end