about summary refs log tree commit diff stats
path: root/db/migrate/20231028210722_create_wittle_scores.rb
blob: aa49a13f124c565012a4990d0f8036032b9f7bdd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
class CreateWittleScores < ActiveRecord::Migration[7.1]
  def change
    create_table :wittle_scores do |t|
      t.references :puzzle, null: false
      t.string :name
      t.string :ip
      t.integer :seconds_taken

      t.timestamps
    end
  end
end