diff --git a/database/migrations/2020_06_26_090510_add_o_auth_provider_field.php b/database/migrations/2020_06_26_090510_add_o_auth_provider_field.php new file mode 100644 index 00000000..c41e7208 --- /dev/null +++ b/database/migrations/2020_06_26_090510_add_o_auth_provider_field.php @@ -0,0 +1,22 @@ +string('provider')->after('secret')->nullable(); + }); + } + + public function down() + { + Schema::table('oauth_clients', function (Blueprint $table) { + $table->removeColumn('provider'); + }); + } +}