- added field clipboard to tblSession

This commit is contained in:
steinm 2013-01-30 19:59:33 +00:00
parent 0c22d143eb
commit 7d6abb988d
2 changed files with 3 additions and 0 deletions

View File

@ -488,6 +488,7 @@ CREATE TABLE `tblSessions` (
`lastAccess` int(11) NOT NULL default '0',
`theme` varchar(30) NOT NULL default '',
`language` varchar(30) NOT NULL default '',
`clipboard` text default '',
PRIMARY KEY (`id`),
CONSTRAINT `tblSessions_user` FOREIGN KEY (`userID`) REFERENCES `tblUsers` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

View File

@ -10,6 +10,8 @@ ALTER TABLE tblDocumentContent ADD COLUMN `fileSize` bigint;
ALTER TABLE tblUsers ADD COLUMN `quota` bigint;
ALTER TABLE tblSessions ADD COLUMN `clipboard` text DEFAULT '';
CREATE TABLE tblWorkflowStates (
`id` int(11) NOT NULL auto_increment,
`name` text NOT NULL,