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
509 B
SQL
18 lines
509 B
SQL
-- AUTHOR: Clemens Schwaighofer
|
|
-- DATE: 2005/07/05
|
|
-- DESCRIPTION:
|
|
-- is a "group" for the outside, a user can have serveral groups with different rights so he can access several parts from the outside
|
|
-- TABLE: edit_access
|
|
-- HISTORY:
|
|
|
|
-- DROP TABLE edit_access;
|
|
CREATE TABLE edit_access (
|
|
edit_access_id SERIAL PRIMARY KEY,
|
|
name VARCHAR UNIQUE,
|
|
description VARCHAR,
|
|
COLOR VARCHAR
|
|
) INHERITS (edit_generic) WITHOUT OIDS;
|
|
|
|
DELETE FROM edit_access;
|
|
INSERT INTO edit_access (name) VALUES ('Admin Access');
|