about summary refs log tree commit diff stats
path: root/db/migrate/20231130173513_create_scores.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20231130173513_create_scores.rb')
-rw-r--r--db/migrate/20231130173513_create_scores.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/db/migrate/20231130173513_create_scores.rb b/db/migrate/20231130173513_create_scores.rb new file mode 100644 index 0000000..953ba8d --- /dev/null +++ b/db/migrate/20231130173513_create_scores.rb
@@ -0,0 +1,12 @@
1class CreateScores < ActiveRecord::Migration[7.1]
2 def change
3 create_table :scores do |t|
4 t.references :puzzle, null: false
5 t.string :name
6 t.string :ip
7 t.integer :seconds_taken
8
9 t.timestamps
10 end
11 end
12end