From 0e8115c6e103cfc5e1addac0d770d98a414f00b1 Mon Sep 17 00:00:00 2001 From: jim winstead Date: Sat, 22 Sep 2018 16:08:30 -0700 Subject: [PATCH] Add prop65_warning table (added wrong table last time) --- scat.sql | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/scat.sql b/scat.sql index de11ba664..b7c9fdc20 100644 --- a/scat.sql +++ b/scat.sql @@ -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` --