forked from External/greenlight
initial commit
This commit is contained in:
13
db/migrate/20180504131648_create_users.rb
Normal file
13
db/migrate/20180504131648_create_users.rb
Normal file
@ -0,0 +1,13 @@
|
||||
class CreateUsers < ActiveRecord::Migration[5.0]
|
||||
def change
|
||||
create_table :users do |t|
|
||||
t.string :provider, null: false
|
||||
t.string :uid, null: false
|
||||
t.string :name
|
||||
t.string :username
|
||||
t.string :email
|
||||
|
||||
t.timestamps
|
||||
end
|
||||
end
|
||||
end
|
Reference in New Issue
Block a user