blob: 7012a4aa75d903aa5afeab4dad43280b75d1db3c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
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
|