upload recordings to youtube

This commit is contained in:
Josh
2017-05-23 14:43:53 -04:00
parent 24c8952e59
commit 7d96eadbbf
15 changed files with 213 additions and 4 deletions

View File

@ -0,0 +1,5 @@
class AddTokenToUsers < ActiveRecord::Migration[5.0]
def change
add_column :users, :token, :string
end
end

View File

@ -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