mirror of
https://github.com/flarum/core.git
synced 2025-08-07 00:47:00 +02:00
chore: update dependencies (#4012)
* chore: phpunit 10 * chore: config * Apply fixes from StyleCI * chore: phpunit 11 (php 8.2 minimum requirement) * feat: laravel 11 * Apply fixes from StyleCI * feat: carbon v3 * fixes
This commit is contained in:
@@ -13,13 +13,13 @@ use Illuminate\Database\Schema\Builder;
|
||||
return [
|
||||
'up' => function (Builder $schema) {
|
||||
$schema->table('flags', function (Blueprint $table) {
|
||||
$table->text('reason_detail')->change();
|
||||
$table->text('reason_detail')->nullable()->change();
|
||||
});
|
||||
},
|
||||
|
||||
'down' => function (Builder $schema) {
|
||||
$schema->table('flags', function (Blueprint $table) {
|
||||
$table->string('reason_detail')->change();
|
||||
$table->string('reason_detail')->nullable()->change();
|
||||
});
|
||||
}
|
||||
];
|
||||
|
Reference in New Issue
Block a user