1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-12 16:24:04 +00:00

Use nullable data column instead of default value

This commit is contained in:
Samuel Štancl 2020-05-15 02:04:51 +02:00
parent d92277a236
commit 52476d6298

View file

@ -21,7 +21,7 @@ class CreateTenantsTable extends Migration
// your custom columns may go here
$table->timestamps();
$table->json('data')->default('{}');
$table->json('data')->nullable();
});
}