Skip to content

Commit

Permalink
Add prop65_warning table
Browse files Browse the repository at this point in the history
  • Loading branch information
jimwins committed Sep 22, 2018
1 parent 25fffda commit 808c4f8
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions scat.sql
Expand Up @@ -329,6 +329,24 @@ CREATE TABLE `product` (
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `redirect`
--

DROP TABLE IF EXISTS `redirect`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `redirect` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`source` varchar(512) NOT NULL,
`dest` varchar(512) NOT NULL,
`added` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
`modified` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
KEY `source` (`source`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `saved_search`
--
Expand Down

0 comments on commit 808c4f8

Please sign in to comment.