master1.sql 676 B

1234567891011121314151617181920212223242526
  1. /**
  2. * 个人配置桌面表
  3. */
  4. DROP TABLE IF EXISTS `master1_desk_conf`;
  5. CREATE TABLE `master1_desk_conf` (
  6. `universalid` bigint(30) NOT NULL,
  7. `deskId` varchar(64) DEFAULT NULL,
  8. `pos` bigint(3) DEFAULT NULL,
  9. `userId` bigint(30) DEFAULT NULL,
  10. `toolId` varchar(64) DEFAULT NULL,
  11. `addDateTime` datetime DEFAULT NULL,
  12. PRIMARY KEY (`universalid`)
  13. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  14. /**
  15. * 个人桌面导航
  16. */
  17. DROP TABLE IF EXISTS `master1_nav_conf`;
  18. CREATE TABLE `master1_nav_conf` (
  19. `universalid` bigint(30) DEFAULT NULL,
  20. `taskKey` varchar(256) DEFAULT NULL,
  21. `state` bigint(2) DEFAULT '1',
  22. `userId` bigint(30) DEFAULT NULL
  23. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;