about summary refs log tree commit diff stats
path: root/db/migrate/20221210170549_create_lingo_scores.lingo.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20221210170549_create_lingo_scores.lingo.rb')
-rw-r--r--db/migrate/20221210170549_create_lingo_scores.lingo.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/db/migrate/20221210170549_create_lingo_scores.lingo.rb b/db/migrate/20221210170549_create_lingo_scores.lingo.rb new file mode 100644 index 0000000..f56790f --- /dev/null +++ b/db/migrate/20221210170549_create_lingo_scores.lingo.rb
@@ -0,0 +1,13 @@
1# This migration comes from lingo (originally 20221210011146)
2class CreateLingoScores < ActiveRecord::Migration[7.0]
3 def change
4 create_table :lingo_scores do |t|
5 t.integer :user_id
6 t.string :username
7 t.string :avatar_url
8 t.integer :score
9
10 t.timestamps
11 end
12 end
13end