Skip to content

Commit

Permalink
fix home field on #__template_styles 3/6
Browse files Browse the repository at this point in the history
  • Loading branch information
alikon committed Apr 15, 2019
1 parent bc78357 commit 9ed8dec
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions installation/sql/sqlazure/joomla.sql
Expand Up @@ -2574,7 +2574,7 @@ CREATE TABLE "#__template_styles" (
"id" bigint IDENTITY(9,1) NOT NULL,
"template" nvarchar(50) NOT NULL DEFAULT '',
"client_id" tinyint NOT NULL DEFAULT 0,
"home" nvarchar(7) NOT NULL DEFAULT 0,
"home" tinyint NOT NULL DEFAULT 0,
"title" nvarchar(255) NOT NULL DEFAULT '',
"params" nvarchar(max) NOT NULL,
CONSTRAINT "PK_#__template_styles_id" PRIMARY KEY CLUSTERED
Expand All @@ -2600,10 +2600,10 @@ CREATE NONCLUSTERED INDEX "idx_template" ON "#__template_styles"
SET IDENTITY_INSERT "#__template_styles" ON;

INSERT INTO "#__template_styles" ("id", "template", "client_id", "home", "title", "params") VALUES
(4, 'beez3', 0, '0', 'Beez3 - Default', '{"wrapperSmall":"53","wrapperLarge":"72","logo":"images/joomla_black.png","sitetitle":"Joomla!","sitedescription":"Open Source Content Management","navposition":"left","templatecolor":"personal","html5":"0"}'),
(5, 'hathor', 1, '0', 'Hathor - Default', '{"showSiteName":"0","colourChoice":"","boldText":"0"}'),
(7, 'protostar', 0, '1', 'protostar - Default', '{"templateColor":"","logoFile":"","googleFont":"1","googleFontName":"Open+Sans","fluidContainer":"0"}'),
(8, 'isis', 1, '1', 'isis - Default', '{"templateColor":"","logoFile":""}');
(4, 'beez3', 0, 0, 'Beez3 - Default', '{"wrapperSmall":"53","wrapperLarge":"72","logo":"images/joomla_black.png","sitetitle":"Joomla!","sitedescription":"Open Source Content Management","navposition":"left","templatecolor":"personal","html5":"0"}'),
(5, 'hathor', 1, 0, 'Hathor - Default', '{"showSiteName":"0","colourChoice":"","boldText":"0"}'),
(7, 'protostar', 0, 1, 'protostar - Default', '{"templateColor":"","logoFile":"","googleFont":"1","googleFontName":"Open+Sans","fluidContainer":"0"}'),
(8, 'isis', 1, 1, 'isis - Default', '{"templateColor":"","logoFile":""}');

SET IDENTITY_INSERT "#__template_styles" OFF;

Expand Down

0 comments on commit 9ed8dec

Please sign in to comment.