p_usrloc.sql 525 B

1234567891011121314151617
  1. --
  2. -- Table structure for table `locdb`
  3. --
  4. DROP TABLE IF EXISTS `locdb`;
  5. CREATE TABLE `locdb` (
  6. `id` int(11) NOT NULL default '0',
  7. `no` int(11) NOT NULL default '0',
  8. `url` varchar(255) NOT NULL default '',
  9. `status` tinyint(4) NOT NULL default '1',
  10. `errors` int(11) NOT NULL default '0',
  11. `failover` datetime NOT NULL default '1900-01-01 00:00:01',
  12. `spare` tinyint(4) NOT NULL default '0',
  13. `rg` int(11) NOT NULL default '0',
  14. PRIMARY KEY (`id`,`no`),
  15. KEY `no` (`no`)
  16. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;