Skip to content

Commit 15a9003

Browse files
author
Yutaro Iiyama
committed
adding the invalidations table
1 parent 37b3704 commit 15a9003

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

etc/db/dynamoregister.sql

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff 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
--

0 commit comments

Comments
 (0)