Skip to content

Commit

Permalink
Dev: Add missing active field for survey menus
Browse files Browse the repository at this point in the history
  • Loading branch information
olleharstedt committed Aug 24, 2017
1 parent f9c4383 commit 7aad8ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions installer/sql/create-mysql.sql
Original file line number Diff line number Diff line change
Expand Up @@ -641,8 +641,8 @@ CREATE TABLE `prefix_surveymenu` (
KEY `title` (`title`(250))
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

INSERT INTO `prefix_surveymenu` VALUES (1,NULL,NULL,NULL,0,0,'surveymenu','side','Main survey menu',NOW(),0,NOW(),0);
INSERT INTO `prefix_surveymenu` VALUES (2,NULL,NULL,NULL,0,0,'quickmenue','collapsed','quickmenu',NOW(),0,NOW(),0);
INSERT INTO `prefix_surveymenu` VALUES (1,NULL,NULL,NULL,0,0,'surveymenu','side','Main survey menu',1, NOW(),0,NOW(),0);
INSERT INTO `prefix_surveymenu` VALUES (2,NULL,NULL,NULL,0,0,'quickmenue','collapsed','quickmenu',1, NOW(),0,NOW(),0);

CREATE TABLE `prefix_surveymenu_entries` (
`id` int(11) NOT NULL AUTO_INCREMENT,
Expand Down

0 comments on commit 7aad8ae

Please sign in to comment.