An error occurred while loading the file. Please try again.
alter.sql 224 bytes
// add `salutation` column and alter `title` to be not mandatory
ALTER TABLE `userdb`.`user` 
ADD COLUMN `salutation` VARCHAR(45) NULL DEFAULT NULL AFTER `email`,
CHANGE COLUMN `title` `title` VARCHAR(45) NULL DEFAULT NULL ;