mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-11 20:21:16 +00:00
add table tblCachedAccess (not used)
This commit is contained in:
parent
6809645256
commit
4cc1704915
|
@ -831,6 +831,22 @@ CREATE TABLE `tblTransmittalItems` (
|
|||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for cached read access
|
||||
--
|
||||
|
||||
CREATE TABLE `tblCachedAccess` (
|
||||
`id` int(11) NOT NULL auto_increment,
|
||||
`document` int(11) default NULL,
|
||||
`user` int(11) default null,
|
||||
`mode` tinyint(4) NOT NULL default '0',
|
||||
PRIMARY KEY (`id`),
|
||||
CONSTRAINT `tblCachedAccess_document` FOREIGN KEY (`document`) REFERENCES `tblDocuments` (`id`) ON DELETE CASCADE,
|
||||
CONSTRAINT `tblCachedAccess_user` FOREIGN KEY (`user`) REFERENCES `tblUsers` (`id`) ON DELETE CASCADE,
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for access request objects
|
||||
--
|
||||
|
@ -842,6 +858,7 @@ CREATE TABLE `tblAros` (
|
|||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for access control objects
|
||||
|
|
Loading…
Reference in New Issue
Block a user