blob: 51102213634021922359b7fde78d76d439a1a504 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# This migration comes from wittle (originally 20231028210722)
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
|