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
| .gh-fairbilling { | |
| background: radial-gradient(circle farthest-corner at right bottom,#91c6ff,#648ecc 10%,#4667ae 20%,#3242a0 27%,#38228f 35%,#2d1470 50%,#310c4f 63%,#220326 93%,#000); | |
| } |
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
| -- Creación de la tabla | |
| CREATE TABLE IF NOT EXISTS `paises` ( | |
| `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ID único del país', | |
| `name` varchar(30) COLLATE latin1_spanish_ci NOT NULL COMMENT 'Nombre descritivo', | |
| `iso_name` varchar(30) COLLATE latin1_spanish_ci NOT NULL COMMENT 'Nombre standard ISO', | |
| `alfa2` varchar(2) COLLATE latin1_spanish_ci NOT NULL COMMENT 'Código de 2 caracteres', | |
| `alfa3` varchar(3) COLLATE latin1_spanish_ci NOT NULL COMMENT 'Código de 3 caracteres', | |
| `numerico` int(3) NOT NULL COMMENT 'Código único por país', | |
| PRIMARY KEY (`id`) |