access_type
Contains a mapping of 'permissions' to textual names of those pemissions.
To enforce referential integrity.
* Note, this table will go away as part of the permission model rewrite (see 8)
CREATE TABLE access_type ( identifier integer NOT NULL PRIMARY KEY, value varchar(10) );
None.
None.
None.
Version 2.5
Still in use
= Version 2.5 =
CREATE TABLE access_type ( identifier integer NOT NULL PRIMARY KEY, value varchar(10) );
= Version 2.5 =
INSERT INTO access_type VALUES (NEXTVAL('access_type_id_sequence'), 'Public'); INSERT INTO access_type VALUES (NEXTVAL('access_type_id_sequence'), 'Protected'); INSERT INTO access_type VALUES (NEXTVAL('access_type_id_sequence'), 'Private');