We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b030fb4 commit 72539c5Copy full SHA for 72539c5
1 file changed
database/migrations/model/Version20251106013928.php
@@ -35,7 +35,7 @@ public function up(Schema $schema): void
35
$builder = new Builder($schema);
36
if($schema->hasTable("PaymentGatewayProfile") && !$builder->hasColumn("PaymentGatewayProfile", "ExternalId")) {
37
$builder->table("PaymentGatewayProfile", function (Table $table) {
38
- $table->string("ExternalId", )->setNotnull(false)->setDefault('NULL');
+ $table->string("ExternalId", )->setNotnull(false)->setDefault(null);
39
$table->unique(["ExternalId"], "PaymentGatewayProfile_ExternalId_Unique");
40
});
41
}
0 commit comments