~adamzammit/quexs/quexscativm

« back to all changes in this revision

Viewing changes to database/quexs.sql

  • Committer: Adam Zammit
  • Date: 2013-07-04 05:18:02 UTC
  • mfrom: (298.1.53 quexsbzrtrunk)
  • Revision ID: adam.zammit@acspri.org.au-20130704051802-1r97z8oml0y2iryy
Updated to version 1.8.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
294
294
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
295
295
 
296
296
--
 
297
-- Table structure for table `case_queue`
297
298
--
298
299
 
 
300
CREATE TABLE `case_queue` (
 
301
  `case_queue_id` bigint(20) NOT NULL auto_increment,
 
302
  `case_id` bigint(20) NOT NULL,
 
303
  `operator_id` bigint(20) NOT NULL,
 
304
  `sortorder` int(11) NOT NULL,
 
305
  PRIMARY KEY  (`case_queue_id`),
 
306
  UNIQUE KEY `case_id` (`case_id`),
 
307
  KEY `operator_id` (`operator_id`)
 
308
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
299
309
 
300
310
-- --------------------------------------------------------
301
311
 
1605
1614
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
1606
1615
 
1607
1616
--
 
1617
-- Table structure for table `sample_import_var_restrict`
1608
1618
--
1609
1619
 
 
1620
CREATE TABLE `sample_import_var_restrict` (
 
1621
  `sample_import_id` bigint(20) NOT NULL,
 
1622
  `var` char(128) collate utf8_unicode_ci NOT NULL,
 
1623
  `restrict` tinyint(1) NOT NULL default '0',
 
1624
  PRIMARY KEY  (`sample_import_id`,`var`)
 
1625
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
1610
1626
 
1611
1627
-- --------------------------------------------------------
1612
1628