diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2022-12-10 12:32:44 -0500 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2022-12-10 12:32:44 -0500 |
commit | 230ab3079fd4e16ebaa593f6cc5fdbcbad3c2321 (patch) | |
tree | b61b7d4c706de43361da73cce0d2a2a006a89b18 /db/migrate/20221210170549_create_lingo_scores.lingo.rb | |
parent | dc7253d0b71f25c2e9a4547d414fa18390b74fbf (diff) | |
download | thoughts-230ab3079fd4e16ebaa593f6cc5fdbcbad3c2321.tar.gz thoughts-230ab3079fd4e16ebaa593f6cc5fdbcbad3c2321.tar.bz2 thoughts-230ab3079fd4e16ebaa593f6cc5fdbcbad3c2321.zip |
Installed LINGO scoreboard
Diffstat (limited to 'db/migrate/20221210170549_create_lingo_scores.lingo.rb')
-rw-r--r-- | db/migrate/20221210170549_create_lingo_scores.lingo.rb | 13 |
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) | ||
2 | class 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 | ||
13 | end | ||