bigIncrements('id'); $table->string('email')->unique(); $table->string('name'); $table->string('patronymic'); $table->string('lastname'); $table->text('access_token'); $table->text('refresh_token'); $table->rememberToken(); $table->timestamps(); $table->timestamp('expires_at')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists(OAuth2User::TABLE_NAME); } }