Update SQLDump for including exceptions table.
Added exceptions table with username and points_to fields.
This commit is contained in:
parent
2b8ef44614
commit
0c7e091a15
24
sqldump.sql
24
sqldump.sql
|
@ -15,6 +15,28 @@
|
||||||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
||||||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
||||||
|
|
||||||
|
--
|
||||||
|
-- Table structure for table `exceptions`
|
||||||
|
--
|
||||||
|
|
||||||
|
DROP TABLE IF EXISTS `exceptions`;
|
||||||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||||
|
/*!40101 SET character_set_client = utf8 */;
|
||||||
|
CREATE TABLE `exceptions` (
|
||||||
|
`username` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
|
||||||
|
`points_to` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL
|
||||||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||||
|
|
||||||
|
--
|
||||||
|
-- Dumping data for table `exceptions`
|
||||||
|
--
|
||||||
|
|
||||||
|
LOCK TABLES `exceptions` WRITE;
|
||||||
|
/*!40000 ALTER TABLE `exceptions` DISABLE KEYS */;
|
||||||
|
/*!40000 ALTER TABLE `exceptions` ENABLE KEYS */;
|
||||||
|
UNLOCK TABLES;
|
||||||
|
|
||||||
--
|
--
|
||||||
-- Table structure for table `users`
|
-- Table structure for table `users`
|
||||||
--
|
--
|
||||||
|
@ -49,4 +71,4 @@ UNLOCK TABLES;
|
||||||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||||
|
|
||||||
-- Dump completed on 2018-04-03 17:53:15
|
-- Dump completed on 2018-04-04 12:58:51
|
||||||
|
|
Loading…
Reference in New Issue