mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-28 06:57:22 +08:00
comment default null
This commit is contained in:
+2
-2
@@ -14,10 +14,10 @@ return new class extends Migration
|
|||||||
public function up()
|
public function up()
|
||||||
{
|
{
|
||||||
Schema::table('agent_allowed_family', function (Blueprint $table) {
|
Schema::table('agent_allowed_family', function (Blueprint $table) {
|
||||||
$table->string("comment")->nullable(true)->change();
|
$table->string("comment")->nullable(true)->default(null)->change();
|
||||||
});
|
});
|
||||||
Schema::table('agent_allowed_exception', function (Blueprint $table) {
|
Schema::table('agent_allowed_exception', function (Blueprint $table) {
|
||||||
$table->string("comment")->nullable(true)->change();
|
$table->string("comment")->nullable(true)->default(null)->change();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user