· 7 years ago · Jan 25, 2019, 11:34 AM
1
2DROP TABLE IF EXISTS `interest`;
3/*!40101 SET @saved_cs_client = @@character_set_client */;
4/*!40101 SET character_set_client = utf8 */;
5CREATE TABLE `interest` (
6 `id` int(11) NOT NULL AUTO_INCREMENT,
7 `descrip` varchar(100) DEFAULT NULL,
8 `status` tinyint(4) NOT NULL DEFAULT 1,
9 PRIMARY KEY (`id`)
10) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=latin1;
11/*!40101 SET character_set_client = @saved_cs_client */;
12
13--
14-- Dumping data for table `interest`
15--
16
17LOCK TABLES `interest` WRITE;
18/*!40000 ALTER TABLE `interest` DISABLE KEYS */;
19INSERT INTO `interest` VALUES (3,'Autos y vehÃculos',1),(4,'Belleza y moda',1),(5,'Comedia',1),(6,'Educación',1),(7,'Entretenimiento',1),(8,'Entretenimiento familiar',1),(9,'Cine y animación',1),(10,'Comida',1),(11,'Videojuegos',1),(12,'Consejos y estilo',1),(13,'Música',1),(14,'Noticias y polÃtica',1),(15,'Activismo y ONG',1),(16,'Personas y blogs',1),(17,'Mascotas y animales',1),(18,'Ciencia y tecnologÃa',1),(19,'Deportes',1),(20,'Viajes y eventos',1);
20/*!40000 ALTER TABLE `interest` ENABLE KEYS */;
21UNLOCK TABLES;
22/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;