-
Notifications
You must be signed in to change notification settings - Fork 14
Open
Description
Seems that the sql produced puts null in a string
ALTER TABLE table CHANGE column column ENUM('Option 1','Option 2') DEFAULT 'NULL' COLLATE `utf8mb4_unicode_ci`;
Minor issue as resolved by adding default(null)
$table->enum('column', ['Option 1', 'Option 2'])->nullable()->default(null)->change();
Metadata
Metadata
Assignees
Labels
No labels