mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-13 21:21:27 +00:00
- some minor beautyfying
This commit is contained in:
parent
b813015607
commit
08dafb4418
|
@ -490,31 +490,6 @@ CREATE TABLE `tblSessions` (
|
||||||
|
|
||||||
-- --------------------------------------------------------
|
-- --------------------------------------------------------
|
||||||
|
|
||||||
--
|
|
||||||
-- dirID is the current target content subdirectory. The last file loaded
|
|
||||||
-- into MyDMS will be physically stored here. Is updated every time a new
|
|
||||||
-- file is uploaded.
|
|
||||||
--
|
|
||||||
-- dirPath is a essentially a foreign key from tblPathList, referencing the
|
|
||||||
-- parent directory path for dirID, relative to MyDMS's _contentDir.
|
|
||||||
--
|
|
||||||
|
|
||||||
CREATE TABLE `tblDirPath` (
|
|
||||||
`dirID` int(11) NOT NULL auto_increment,
|
|
||||||
`dirPath` varchar(255) NOT NULL,
|
|
||||||
PRIMARY KEY (`dirID`)
|
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
||||||
|
|
||||||
-- --------------------------------------------------------
|
|
||||||
|
|
||||||
CREATE TABLE `tblPathList` (
|
|
||||||
`id` int(11) NOT NULL auto_increment,
|
|
||||||
`parentPath` varchar(255) NOT NULL,
|
|
||||||
PRIMARY KEY (`id`)
|
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
||||||
|
|
||||||
-- --------------------------------------------------------
|
|
||||||
|
|
||||||
--
|
--
|
||||||
-- Table structure for mandatory reviewers
|
-- Table structure for mandatory reviewers
|
||||||
--
|
--
|
||||||
|
@ -526,6 +501,8 @@ CREATE TABLE `tblMandatoryReviewers` (
|
||||||
PRIMARY KEY (`userID`,`reviewerUserID`,`reviewerGroupID`)
|
PRIMARY KEY (`userID`,`reviewerUserID`,`reviewerGroupID`)
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||||
|
|
||||||
|
-- --------------------------------------------------------
|
||||||
|
|
||||||
--
|
--
|
||||||
-- Table structure for mandatory approvers
|
-- Table structure for mandatory approvers
|
||||||
--
|
--
|
||||||
|
@ -537,6 +514,8 @@ CREATE TABLE `tblMandatoryApprovers` (
|
||||||
PRIMARY KEY (`userID`,`approverUserID`,`approverGroupID`)
|
PRIMARY KEY (`userID`,`approverUserID`,`approverGroupID`)
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||||
|
|
||||||
|
-- --------------------------------------------------------
|
||||||
|
|
||||||
--
|
--
|
||||||
-- Table structure for events (calendar)
|
-- Table structure for events (calendar)
|
||||||
--
|
--
|
||||||
|
@ -552,6 +531,8 @@ CREATE TABLE `tblEvents` (
|
||||||
PRIMARY KEY (`id`)
|
PRIMARY KEY (`id`)
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||||
|
|
||||||
|
-- --------------------------------------------------------
|
||||||
|
|
||||||
--
|
--
|
||||||
-- Table structure for version
|
-- Table structure for version
|
||||||
--
|
--
|
||||||
|
@ -563,6 +544,8 @@ CREATE TABLE `tblVersion` (
|
||||||
`subminor` smallint
|
`subminor` smallint
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||||
|
|
||||||
|
-- --------------------------------------------------------
|
||||||
|
|
||||||
--
|
--
|
||||||
-- Initial content for database
|
-- Initial content for database
|
||||||
--
|
--
|
||||||
|
|
Loading…
Reference in New Issue
Block a user