mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-15 04:27:14 +01:00
reconstructed table stechuhrdevice
This commit is contained in:
parent
9ce1baa5ff
commit
4370b3558a
@ -14820,6 +14820,19 @@ CREATE TABLE IF NOT EXISTS `ups` (
|
|||||||
`aktiv` tinyint(1) NOT NULL DEFAULT '0',
|
`aktiv` tinyint(1) NOT NULL DEFAULT '0',
|
||||||
PRIMARY KEY (`id`)
|
PRIMARY KEY (`id`)
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||||
|
|
||||||
|
/* Reconstructed from SELECT statement */
|
||||||
|
CREATE TABLE IF NOT EXISTS `stechuhrdevice` (
|
||||||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||||
|
`url` varchar(255) NOT NULL DEFAULT '',
|
||||||
|
`reduziert` int(11) NOT NULL DEFAULT 0,
|
||||||
|
`code` int(11) NOT NULL DEFAULT 0,
|
||||||
|
`aktiv` int(11) NOT NULL DEFAULT 0,
|
||||||
|
`IP` int(4) NOT NULL DEFAULT 0,
|
||||||
|
`submask` int(4) NOT NULL DEFAULT 0,
|
||||||
|
PRIMARY KEY (`id`)
|
||||||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||||
|
|
||||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||||
|
|
||||||
--
|
--
|
||||||
|
Loading…
Reference in New Issue
Block a user