Install Joomla on apache with MySQL or PostgresSQL database.
Table template_styles with column home with type tinyint.
Table template_styles has a column home with type varchar(7)
-- Table: ****_template_styles
CREATE TABLE ****_template_styles
(
id serial NOT NULL,
template character varying(50) NOT NULL DEFAULT ''::character varying,
client_id smallint NOT NULL DEFAULT 0,
home character varying(7) NOT NULL DEFAULT '0'::character varying,
title character varying(255) NOT NULL DEFAULT ''::character varying,
params text NOT NULL,
CONSTRAINT aa360_template_styles_pkey PRIMARY KEY (id)
)
WITH (
OIDS=FALSE
);
ALTER TABLE *****_template_styles
OWNER TO ****;
Some plug-ins won't work with varchar.
CentOS 7, Apache + PHP5.6 + PostgresSQL 9.6
Doc about table:
https://docs.joomla.org/Tables/template_styles
Labels |
Added:
?
|
Status | New | ⇒ | Discussion |
Category | ⇒ | Templates (site) |
Labels |
Added:
J3 Issue
|
Status | Discussion | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2019-04-15 18:53:08 |
Closed_By | ⇒ | franz-wohlkoenig |
Closed as having Pull Request.
Never understood indeed why we have char(7) instead of tinyint(1) as the value is 0 or 1