forked from External/greenlight
upload recordings to youtube
This commit is contained in:
5
db/migrate/20170518190442_add_token_to_users.rb
Normal file
5
db/migrate/20170518190442_add_token_to_users.rb
Normal file
@ -0,0 +1,5 @@
|
||||
class AddTokenToUsers < ActiveRecord::Migration[5.0]
|
||||
def change
|
||||
add_column :users, :token, :string
|
||||
end
|
||||
end
|
@ -10,7 +10,7 @@
|
||||
#
|
||||
# It's strongly recommended that you check this file into your version control system.
|
||||
|
||||
ActiveRecord::Schema.define(version: 20170510175654) do
|
||||
ActiveRecord::Schema.define(version: 20170518190442) do
|
||||
|
||||
create_table "users", force: :cascade do |t|
|
||||
t.string "provider", null: false
|
||||
@ -25,6 +25,7 @@ ActiveRecord::Schema.define(version: 20170510175654) do
|
||||
t.string "background_content_type"
|
||||
t.integer "background_file_size"
|
||||
t.datetime "background_updated_at"
|
||||
t.string "token"
|
||||
t.index ["email"], name: "index_users_on_email", unique: true
|
||||
t.index ["encrypted_id"], name: "index_users_on_encrypted_id", unique: true
|
||||
t.index ["provider", "uid"], name: "index_users_on_provider_and_uid", unique: true
|
||||
|
Reference in New Issue
Block a user