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` --