This commit is contained in:
jane 2022-04-09 21:16:01 -04:00
parent e253a71fc4
commit 2696e1f184
33 changed files with 443 additions and 0 deletions

View file

@ -0,0 +1,12 @@
class CreateDiscordusers < ActiveRecord::Migration[7.0]
def change
create_table :discord_users do |t|
t.string :discord_id
t.string :username
t.string :discriminator
t.string :avatar
t.timestamps
end
end
end

View file

@ -0,0 +1,11 @@
class CreateUsers < ActiveRecord::Migration[7.0]
def change
create_table :users do |t|
t.string :provider
t.string :uid
t.string :border
t.timestamps
end
end
end