about summary refs log tree commit diff stats
path: root/db/migrate/20221210170549_create_lingo_scores.lingo.rb
blob: f56790f4671ef18258131e05666858524659b57c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
# This migration comes from lingo (originally 20221210011146)
class CreateLingoScores < ActiveRecord::Migration[7.0]
  def change
    create_table :lingo_scores do |t|
      t.integer :user_id
      t.string :username
      t.string :avatar_url
      t.integer :score

      t.timestamps
    end
  end
end