-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathext_tables.sql
33 lines (30 loc) · 961 Bytes
/
ext_tables.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#
# Table structure for table 'sys_action'
#
CREATE TABLE sys_action (
title varchar(255) DEFAULT '' NOT NULL,
type tinyint(3) unsigned DEFAULT '0' NOT NULL,
t1_userprefix varchar(20) DEFAULT '' NOT NULL,
t1_copy_of_user int(11) DEFAULT '0' NOT NULL,
t1_allowed_groups tinytext,
assign_to_groups int(11) DEFAULT '0' NOT NULL,
t1_create_user_dir tinyint(4) DEFAULT '0' NOT NULL,
t3_listPid int(11) DEFAULT '0' NOT NULL,
t3_tables varchar(255) DEFAULT '' NOT NULL,
t4_recordsToEdit text,
);
#
# Table structure for table 'sys_action_asgr_mm'
#
CREATE TABLE sys_action_asgr_mm (
uid_local int(11) unsigned DEFAULT '0' NOT NULL,
uid_foreign int(11) unsigned DEFAULT '0' NOT NULL,
sorting int(11) unsigned DEFAULT '0' NOT NULL,
KEY uid_local (uid_local),
KEY uid_foreign (uid_foreign)
);
CREATE TABLE be_users (
createdByAction int(11) DEFAULT '0' NOT NULL,
cruser_id int(11) DEFAULT '0' NOT NULL,
KEY cruser_id (cruser_id)
);