mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-12-13 19:12:47 +00:00
- changed order of table definitions
This commit is contained in:
parent
c0fe231b4e
commit
7878b8ec59
|
|
@ -307,19 +307,6 @@ CREATE TABLE `tblDocumentStatusLog` (
|
||||||
|
|
||||||
-- --------------------------------------------------------
|
-- --------------------------------------------------------
|
||||||
|
|
||||||
--
|
|
||||||
-- Table structure for table `tblGroupMembers`
|
|
||||||
--
|
|
||||||
|
|
||||||
CREATE TABLE `tblGroupMembers` (
|
|
||||||
`groupID` int(11) NOT NULL default '0',
|
|
||||||
`userID` int(11) NOT NULL default '0',
|
|
||||||
`manager` smallint(1) NOT NULL default '0',
|
|
||||||
PRIMARY KEY (`groupID`,`userID`)
|
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
||||||
|
|
||||||
-- --------------------------------------------------------
|
|
||||||
|
|
||||||
--
|
--
|
||||||
-- Table structure for table `tblGroups`
|
-- Table structure for table `tblGroups`
|
||||||
--
|
--
|
||||||
|
|
@ -333,6 +320,19 @@ CREATE TABLE `tblGroups` (
|
||||||
|
|
||||||
-- --------------------------------------------------------
|
-- --------------------------------------------------------
|
||||||
|
|
||||||
|
--
|
||||||
|
-- Table structure for table `tblGroupMembers`
|
||||||
|
--
|
||||||
|
|
||||||
|
CREATE TABLE `tblGroupMembers` (
|
||||||
|
`groupID` int(11) NOT NULL default '0',
|
||||||
|
`userID` int(11) NOT NULL default '0',
|
||||||
|
`manager` smallint(1) NOT NULL default '0',
|
||||||
|
PRIMARY KEY (`groupID`,`userID`)
|
||||||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||||
|
|
||||||
|
-- --------------------------------------------------------
|
||||||
|
|
||||||
--
|
--
|
||||||
-- Table structure for table `tblKeywordCategories`
|
-- Table structure for table `tblKeywordCategories`
|
||||||
--
|
--
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user