All DB columns that had a varchar(number) are changed to varchar. The edit_language default unique grouping has been removed because this does not work (you cannot have unique on this when it is 1/0 flag only) Update Output\Form\Generate and edit_base to be PHP 7.2 compatible with removing all old while (list() ... each()) entries. Fix all undefined counts, etc. Login class update is long line wraps and clean up of some nested teniary parts
18 lines
518 B
SQL
18 lines
518 B
SQL
-- AUTHOR: Clemens Schwaighofer
|
|
-- DATE: 2005/07/05
|
|
-- DESCRIPTION:
|
|
-- edit tables
|
|
-- TABLE: edit_query_string
|
|
-- HISTORY:
|
|
|
|
-- DROP TABLE edit_query_string;
|
|
CREATE TABLE edit_query_string (
|
|
edit_query_string_id SERIAL PRIMARY KEY,
|
|
name VARCHAR,
|
|
value VARCHAR,
|
|
enabled SMALLINT NOT NULL DEFAULT 0,
|
|
dynamic SMALLINT NOT NULL DEFAULT 0,
|
|
edit_page_id INT NOT NULL,
|
|
FOREIGN KEY (edit_page_id) REFERENCES edit_page (edit_page_id) MATCH FULL ON DELETE CASCADE ON UPDATE CASCADE
|
|
) INHERITS (edit_generic) WITHOUT OIDS;
|