13 lines
339 B
MySQL
13 lines
339 B
MySQL
|
|
CREATE TABLE `groups_groups_link` (
|
||
|
|
`id` int(11) NOT NULL default '0',
|
||
|
|
`parent_group_id` int(11) NOT NULL default '0',
|
||
|
|
`member_group_id` int(11) NOT NULL default '0',
|
||
|
|
PRIMARY KEY (`id`)
|
||
|
|
) TYPE=InnoDB;
|
||
|
|
|
||
|
|
CREATE TABLE `zseq_groups_groups_link` (
|
||
|
|
`id` int(10) unsigned NOT NULL auto_increment,
|
||
|
|
PRIMARY KEY (`id`)
|
||
|
|
) TYPE=InnoDB;
|
||
|
|
|