summaryrefslogtreecommitdiff
path: root/db/migrate/20231030045243_create_games.rb
blob: a46c0cc2d912ff57e0b73c28a8912464913ae6f1 (plain)
1
2
3
4
5
6
7
8
9
class CreateGames < ActiveRecord::Migration[7.1]
  def change
    create_table :games do |t|
      t.string :title, null: false

      t.timestamps
    end
  end
end