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
| Script comunas, regiones, provincias Febrero 2019 | |
| DROP TABLE IF EXISTS `comunas`; | |
| CREATE TABLE `comunas` ( | |
| `id` int(11) NOT NULL AUTO_INCREMENT, | |
| `comuna` varchar(64) NOT NULL, | |
| `provincia_id` int(11) NOT NULL, | |
| PRIMARY KEY (`id`) |