Make column params nullable, to enable users to add data

This commit is contained in:
Oh Martin 2021-10-16 18:02:34 +02:00
parent 1c887d506f
commit fa04654e94
Signed by untrusted user: Oh Martin
GPG Key ID: F91C6D0A21225F8A
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ CREATE TABLE IF NOT EXISTS `#__demo_look` (
`mobile_phone` VARCHAR(64) NOT NULL DEFAULT '',
`name` VARCHAR(255) NOT NULL DEFAULT '',
`website` VARCHAR(255) NOT NULL DEFAULT '',
`params` text NOT NULL,
`params` text NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0,