mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
Code for #3651
This commit is contained in:
@@ -25,7 +25,7 @@ class ChangesForV540 extends Migration
|
||||
|
||||
Schema::table(
|
||||
'accounts', static function (Blueprint $table) {
|
||||
$table->dropColumn('provider');
|
||||
$table->dropColumn('order');
|
||||
}
|
||||
);
|
||||
}
|
||||
@@ -48,6 +48,9 @@ class ChangesForV540 extends Migration
|
||||
}
|
||||
);
|
||||
|
||||
|
||||
// make column nullable:
|
||||
Schema::table('oauth_clients', function (Blueprint $table) {
|
||||
$table->string('secret', 100)->nullable()->change();
|
||||
});
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user