This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- | |
-- Estructura de tabla para la tabla `provincias` | |
-- | |
DROP TABLE IF EXISTS `provincias`; | |
CREATE TABLE IF NOT EXISTS `provincias` ( | |
`id` int(10) NOT NULL AUTO_INCREMENT, | |
`provincia` varchar(255) NOT NULL, | |
PRIMARY KEY (`id`) |