Skip to content

Commit

Permalink
Dev: Typo in database column
Browse files Browse the repository at this point in the history
  • Loading branch information
olleharstedt committed Oct 11, 2017
1 parent fdb6f80 commit f7100f4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions application/helpers/update/updatedb_helper.php
Expand Up @@ -868,7 +868,7 @@ function upgradeTemplateTables304($oDB)
'description' => 'TEXT',
'last_update' => 'datetime DEFAULT NULL',
'owner_id' => 'integer DEFAULT NULL',
'extends_templates_name' => 'string(150) DEFAULT NULL',
'extends_template_name' => 'string(150) DEFAULT NULL',
'PRIMARY KEY (name)'
));

Expand All @@ -889,7 +889,7 @@ function upgradeTemplateTables304($oDB)
'files_folder' => 'files',
'description' => "<strong>LimeSurvey Advanced Template</strong><br>A template with custom options to show what it's possible to do with the new engines. Each template provider will be able to offer its own option page (loaded from template)",
'owner_id' => '1',
'extends_templates_name' => '',
'extends_template_name' => '',
));

// Add minimal template
Expand All @@ -909,7 +909,7 @@ function upgradeTemplateTables304($oDB)
'files_folder' => 'files',
'description' => '<strong>LimeSurvey Minimal Template</strong><br>A clean and simple base that can be used by developers to create their own solution.',
'owner_id' => '1',
'extends_templates_name' => '',
'extends_template_name' => '',
));


Expand All @@ -931,7 +931,7 @@ function upgradeTemplateTables304($oDB)
'files_folder' => 'files',
'description' => "<strong>LimeSurvey Advanced Template</strong><br> A template extending default, to show the inheritance concept. Notice the options, differents from Default.<br><small>uses FezVrasta's Material design theme for Bootstrap 3</small>",
'owner_id' => '1',
'extends_templates_name' => 'default',
'extends_template_name' => 'default',
));


Expand Down
2 changes: 1 addition & 1 deletion installer/sql/create-pgsql_compare.sql
Expand Up @@ -1256,7 +1256,7 @@ CREATE TABLE lime_templates (
description text,
last_update timestamp without time zone,
owner_id integer,
extends_templates_name character varying(150) DEFAULT NULL::character varying
extends_template_name character varying(150) DEFAULT NULL::character varying
);


Expand Down

0 comments on commit f7100f4

Please sign in to comment.