diff --git a/database/migrations/2021_02_05_172502_add_provider_to_oauth_table.php b/database/migrations/2021_02_05_172502_add_provider_to_oauth_table.php new file mode 100644 index 0000000000..7c74d47e3b --- /dev/null +++ b/database/migrations/2021_02_05_172502_add_provider_to_oauth_table.php @@ -0,0 +1,34 @@ +string('provider')->after('secret')->nullable(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('oauth_clients', function (Blueprint $table) { + $table->dropColumn('provider'); + }); + + } +}