increments('id'); $table->integer('user_id')->unsigned(); $table->string('provider_user_id'); $table->string('provider'); $table->string('access_token'); $table->timestamps(); }); } public function down() { $tableName = Config::get('eloquent-oauth.table'); Schema::drop($tableName); } }