From f348b4aaa2567dde8c9453b56e124062fe467ddd Mon Sep 17 00:00:00 2001 From: Kane Valentine Date: Sat, 6 Jan 2018 23:06:27 +0000 Subject: [PATCH] issue with missing default value for 'extra' --- files/inc/plugins/mysupport/mysupport.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/files/inc/plugins/mysupport/mysupport.php b/files/inc/plugins/mysupport/mysupport.php index 004326a..d580f3a 100755 --- a/files/inc/plugins/mysupport/mysupport.php +++ b/files/inc/plugins/mysupport/mysupport.php @@ -55,7 +55,7 @@ function mysupport_do_install() `type` VARCHAR(20) NOT NULL , `name` VARCHAR(255) NOT NULL , `description` VARCHAR(500) NOT NULL, - `extra` VARCHAR(255) NOT NULL + `extra` VARCHAR(255) NOT NULL DEFAULT 'default value' ) ENGINE = MYISAM ; "); } @@ -1446,4 +1446,4 @@ function mysupport_stylesheet($action = 0) } } } -?> \ No newline at end of file +?>