Skip to content

Commit

Permalink
Add prop65_warning table (added wrong table last time)
Browse files Browse the repository at this point in the history
  • Loading branch information
jimwins committed Sep 22, 2018
1 parent 808c4f8 commit 0e8115c
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions scat.sql
Expand Up @@ -329,6 +329,20 @@ 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 `prop65_warning`
--

DROP TABLE IF EXISTS `prop65_warning`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `prop65_warning` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`warning` mediumtext,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

0 comments on commit 0e8115c

Please sign in to comment.