File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -104,6 +104,20 @@ CREATE TABLE `domains` (
104104) ENGINE= MyISAM AUTO_INCREMENT= 1 DEFAULT CHARSET= latin1 COLLATE= latin1_general_cs;
105105/* !40101 SET character_set_client = @saved_cs_client */ ;
106106
107+ --
108+ -- Table structure for table `invalidations`
109+ --
110+
111+ DROP TABLE IF EXISTS ` invalidations` ;
112+ /* !40101 SET @saved_cs_client = @@character_set_client */ ;
113+ /* !40101 SET character_set_client = utf8 */ ;
114+ CREATE TABLE `invalidations ` (
115+ ` item` varchar (512 ) CHARACTER SET latin1 COLLATE latin1_general_cs NOT NULL ,
116+ ` user_id` int (10 ) unsigned NOT NULL DEFAULT ' 0' ,
117+ ` timestamp` datetime NOT NULL
118+ ) ENGINE= MyISAM DEFAULT CHARSET= latin1;
119+ /* !40101 SET character_set_client = @saved_cs_client */ ;
120+
107121--
108122-- Table structure for table `requests`
109123--
You can’t perform that action at this time.
0 commit comments