You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

8 lines
314 B

ALTER TABLE users_groups ADD column `isRole` char(1) DEFAULT 'n';
CREATE TABLE `tiki_categories_roles` (
`categId` int(12) NOT NULL,
`categRoleId` int(12) NOT NULL,
`groupRoleId` int(12) NOT NULL,
`groupId` int(12) NOT NULL,
PRIMARY KEY (`categId`,`categRoleId`,`groupRoleId`)
) ENGINE=MyISAM;