mysql vs sqlite...

This commit is contained in:
notCharles 2024-05-19 21:30:25 -04:00
parent 03cbdd5bdd
commit 859a721e17

View File

@ -12,7 +12,7 @@ return new class extends Migration
public function up(): void public function up(): void
{ {
Schema::table('servers', function (Blueprint $table) { Schema::table('servers', function (Blueprint $table) {
$table->text('docker_labels')->default('[]'); $table->text('docker_labels')->nullable();
}); });
} }