diff options
Diffstat (limited to 'db')
-rw-r--r-- | db/migrate/20201005154823_create_users.rb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/db/migrate/20201005154823_create_users.rb b/db/migrate/20201005154823_create_users.rb new file mode 100644 index 0000000..2d8403c --- /dev/null +++ b/db/migrate/20201005154823_create_users.rb @@ -0,0 +1,15 @@ +class CreateUsers < ActiveRecord::Migration[6.0] + def change + create_table :users do |t| + t.string :name + t.string :username + t.string :email + t.bigint :external_id + t.string :avatar_url + + t.timestamps + end + add_index :users, [:external_id], unique: true + add_index :users, [:email], unique: true + end +end |