1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- --
- -- Data for Name: luticate_settings; Type: TABLE DATA; Schema: public; Owner: dev
- --
-
- INSERT INTO luticate_settings VALUES ('LU_SESSION_DAYS', 'int', '30', true, true);
- INSERT INTO luticate_settings VALUES ('LU_USERS_PER_PAGE', 'int', '15', false, false);
- INSERT INTO luticate_settings VALUES ('LU_GROUPS_PER_PAGE', 'int', '15', false, false);
- INSERT INTO luticate_settings VALUES ('LU_SETTINGS_PER_PAGE', 'int', '15', false, false);
- INSERT INTO luticate_settings VALUES ('LU_PERMISSIONS_PER_PAGE', 'int', '15', false, false);
-
- --
- -- Data for Name: luticate_permissions; Type: TABLE DATA; Schema: public; Owner: dev
- --
-
- INSERT INTO luticate_permissions VALUES ('LU_SETTING_DEL', false);
- INSERT INTO luticate_permissions VALUES ('LU_SETTING_EDIT', false);
- INSERT INTO luticate_permissions VALUES ('LU_SETTING_EFFECTIVE_GET', false);
- INSERT INTO luticate_permissions VALUES ('LU_SETTING_GET', false);
- INSERT INTO luticate_permissions VALUES ('LU_SETTING_USER_EDIT', false);
- INSERT INTO luticate_permissions VALUES ('LU_SETTING_USER_GET', false);
- INSERT INTO luticate_permissions VALUES ('LU_SETTING_EDIT_ME', false);
- INSERT INTO luticate_permissions VALUES ('LU_SETTING_ADD', false);
-
- --
- -- Data for Name: luticate_permissions_groups; Type: TABLE DATA; Schema: public; Owner: dev
- --
-
- INSERT INTO luticate_permissions_groups VALUES ('LU_SETTING_ADD', false, 1);
- INSERT INTO luticate_permissions_groups VALUES ('LU_SETTING_DEL', false, 1);
- INSERT INTO luticate_permissions_groups VALUES ('LU_SETTING_EDIT', true, 1);
- INSERT INTO luticate_permissions_groups VALUES ('LU_SETTING_EFFECTIVE_GET', true, 1);
- INSERT INTO luticate_permissions_groups VALUES ('LU_SETTING_GET', true, 1);
- INSERT INTO luticate_permissions_groups VALUES ('LU_SETTING_USER_EDIT', true, 1);
- INSERT INTO luticate_permissions_groups VALUES ('LU_SETTING_USER_GET', true, 1);
- INSERT INTO luticate_permissions_groups VALUES ('LU_SETTING_ADD', true, 0);
- INSERT INTO luticate_permissions_groups VALUES ('LU_SETTING_DEL', true, 0);
- INSERT INTO luticate_permissions_groups VALUES ('LU_SETTING_EDIT', true, 0);
- INSERT INTO luticate_permissions_groups VALUES ('LU_SETTING_EFFECTIVE_GET', true, 0);
- INSERT INTO luticate_permissions_groups VALUES ('LU_SETTING_GET', true, 0);
- INSERT INTO luticate_permissions_groups VALUES ('LU_SETTING_USER_EDIT', true, 0);
- INSERT INTO luticate_permissions_groups VALUES ('LU_SETTING_USER_GET', true, 0);
- INSERT INTO luticate_permissions_groups VALUES ('LU_SETTING_EDIT_ME', true, 1);
- INSERT INTO luticate_permissions_groups VALUES ('LU_SETTING_EDIT_ME', true, 0);
-
- --
- -- Data for Name: luticate_permissions_users; Type: TABLE DATA; Schema: public; Owner: dev
- --
-
- INSERT INTO luticate_permissions_users VALUES ('LU_SETTING_USER_GET', true, 0);
- INSERT INTO luticate_permissions_users VALUES ('LU_SETTING_ADD', false, 0);
- INSERT INTO luticate_permissions_users VALUES ('LU_SETTING_EDIT', false, 0);
- INSERT INTO luticate_permissions_users VALUES ('LU_SETTING_EFFECTIVE_GET', false, 0);
- INSERT INTO luticate_permissions_users VALUES ('LU_SETTING_DEL', false, 0);
- INSERT INTO luticate_permissions_users VALUES ('LU_SETTING_EDIT_ME', false, 0);
- INSERT INTO luticate_permissions_users VALUES ('LU_SETTING_GET', false, 0);
- INSERT INTO luticate_permissions_users VALUES ('LU_SETTING_USER_EDIT', false, 0);
|