Skip to content

Commit

Permalink
Fixed issue: forgot to set new dbversion for email results feature
Browse files Browse the repository at this point in the history
git-svn-id: file:///Users/Shitiz/Downloads/lssvn/source/limesurvey_dev@7684 b72ed6b6-b9f8-46b5-92b4-906544132732
  • Loading branch information
jcleeland committed Sep 27, 2009
1 parent c393b5c commit 66fe224
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion admin/install/create-mssql.sql
Expand Up @@ -374,7 +374,7 @@ CREATE TABLE [prefix_templates] (
-- Table [settings_global]
--

INSERT INTO [prefix_settings_global] VALUES ('DBVersion', '139');
INSERT INTO [prefix_settings_global] VALUES ('DBVersion', '140');
INSERT INTO [prefix_settings_global] VALUES ('SessionName', '$sessionname');


Expand Down
2 changes: 1 addition & 1 deletion admin/install/create-mysql.sql
Expand Up @@ -322,7 +322,7 @@ create index `saved_control_idx2` on `prefix_saved_control` (`sid`);


-- data
INSERT INTO `prefix_settings_global` VALUES ('DBVersion', '139');
INSERT INTO `prefix_settings_global` VALUES ('DBVersion', '140');
INSERT INTO `prefix_settings_global` VALUES ('SessionName', '$sessionname');

INSERT INTO `prefix_users` (`users_name`, `password`, `full_name`, `parent_id`, `lang` ,`email`, `create_survey`,`create_user` ,`delete_user` ,`superadmin` ,`configurator` ,`manage_template` , `manage_label`) VALUES ('$defaultuser', '$defaultpass', '$siteadminname', 0, '$defaultlang', '$siteadminemail', 1,1,1,1,1,1,1);
Expand Down
2 changes: 1 addition & 1 deletion admin/install/create-postgres.sql
Expand Up @@ -511,7 +511,7 @@ CREATE INDEX prefix_labels_ixcode_idx ON prefix_labels USING btree (code);
-- Table `settings_global`
--

INSERT INTO prefix_settings_global VALUES ('DBVersion', '139');
INSERT INTO prefix_settings_global VALUES ('DBVersion', '140');
INSERT INTO prefix_settings_global VALUES ('SessionName', '$sessionname');


Expand Down

0 comments on commit 66fe224

Please sign in to comment.