Open in Web IDE
Quickly and easily edit multiple files in your project.
Edit
Edit this file only.
// 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 ;