File: /var/www/proveedores.bradford/db_schema.sql
-- --------------------------------------------------------
-- Host: 127.0.0.1
-- Versión del servidor: 10.4.19-MariaDB - mariadb.org binary distribution
-- SO del servidor: Win64
-- HeidiSQL Versión: 12.5.0.6677
-- --------------------------------------------------------
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */
;
/*!40101 SET NAMES utf8 */
;
/*!50503 SET NAMES utf8mb4 */
;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */
;
/*!40103 SET TIME_ZONE='+00:00' */
;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */
;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */
;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */
;
-- Volcando estructura para tabla aaraya_proveedores.comunas
CREATE TABLE IF NOT EXISTS `comunas` (
`id` int(11) NOT NULL,
`codigo` int(11) NOT NULL,
`nombre` varchar(50) NOT NULL,
`id_region` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `fk_regiones` (`id_region`) USING BTREE
) ENGINE = InnoDB DEFAULT CHARSET = utf8;
-- La exportación de datos fue deseleccionada.
-- Volcando estructura para tabla aaraya_proveedores.contactos
CREATE TABLE IF NOT EXISTS `contactos` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`nombre` varchar(400) DEFAULT NULL,
`email` varchar(200) DEFAULT NULL,
`empresa` varchar(100) DEFAULT NULL,
`rut` varchar(100) DEFAULT NULL,
`telefono` varchar(100) DEFAULT NULL,
`giro` int(11) DEFAULT NULL,
`region` int(11) DEFAULT NULL,
`comuna` int(11) DEFAULT NULL,
`comentarios` varchar(600) DEFAULT NULL,
`archivos` mediumtext DEFAULT NULL,
`fecha_creacion` datetime DEFAULT current_timestamp(),
`cookie` varchar(100) DEFAULT NULL,
`nombre_fantasia` varchar(500) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE = InnoDB AUTO_INCREMENT = 60 DEFAULT CHARSET = utf8;
-- La exportación de datos fue deseleccionada.
-- Volcando estructura para tabla aaraya_proveedores.giros
CREATE TABLE IF NOT EXISTS `giros` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`codigo` int(11) NOT NULL,
`name` varchar(100) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE = InnoDB AUTO_INCREMENT = 675 DEFAULT CHARSET = utf8;
-- La exportación de datos fue deseleccionada.
-- Volcando estructura para tabla aaraya_proveedores.regiones
CREATE TABLE IF NOT EXISTS `regiones` (
`id` int(11) NOT NULL,
`codigo` int(11) NOT NULL,
`name` varchar(100) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE = InnoDB DEFAULT CHARSET = utf8;
-- La exportación de datos fue deseleccionada.
-- Volcando estructura para tabla aaraya_proveedores.users
CREATE TABLE IF NOT EXISTS `users` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`token` varchar(200) DEFAULT NULL,
`active` tinyint(4) DEFAULT 1,
`create_time` timestamp NULL DEFAULT current_timestamp(),
PRIMARY KEY (`id`)
) ENGINE = InnoDB AUTO_INCREMENT = 2 DEFAULT CHARSET = utf8;
-- La exportación de datos fue deseleccionada.
/*!40103 SET TIME_ZONE=IFNULL(@OLD_TIME_ZONE, 'system') */
;
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */
;
/*!40014 SET FOREIGN_KEY_CHECKS=IFNULL(@OLD_FOREIGN_KEY_CHECKS, 1) */
;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */
;
/*!40111 SET SQL_NOTES=IFNULL(@OLD_SQL_NOTES, 1) */
;