Просмотр исходного кода

Update migrations, fix broken oauth change

Daniel Supernault 4 лет назад
Родитель
Сommit
4a885c8878

+ 3 - 1
database/migrations/2020_12_13_203646_add_providers_column_to_oauth_clients_table.php

@@ -14,7 +14,9 @@ class AddProvidersColumnToOauthClientsTable extends Migration
     public function up()
     {
         Schema::table('oauth_clients', function (Blueprint $table) {
-            $table->string('provider')->after('secret')->nullable();
+            if(Schema::hasColumn('oauth_clients', 'provider') == false) {
+                $table->string('provider')->after('secret')->nullable();
+            }
         });
     }