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
547 B
SQL
18 lines
547 B
SQL
-- AUTHOR: Clemens Schwaighofer
|
|
-- DATE: 2005/07/05
|
|
-- DESCRIPTION:
|
|
-- edit tables, postgres SQL statements for the mysql definitions
|
|
-- TABLE: edit_visible_group
|
|
-- HISTORY
|
|
|
|
-- DROP TABLE edit_visible_group;
|
|
CREATE TABLE edit_visible_group (
|
|
edit_visible_group_id SERIAL PRIMARY KEY,
|
|
name VARCHAR,
|
|
flag VARCHAR
|
|
) INHERITS (edit_generic) WITHOUT OIDS;
|
|
|
|
DELETE FROM edit_visible_group;
|
|
INSERT INTO edit_visible_group (name, flag) VALUES ('Main Menu', 'main');
|
|
INSERT INTO edit_visible_group (name, flag) VALUES ('Data popup Menu', 'datapopup');
|