|
| 1 | +DROP TABLE IF EXISTS `dvf`; |
| 2 | + |
| 3 | +CREATE TABLE `dvf` ( |
| 4 | + `id` int(11) NOT NULL AUTO_INCREMENT, |
| 5 | + `id_mutation` varchar(255) DEFAULT '', |
| 6 | + `date_mutation` date DEFAULT NULL, |
| 7 | + `numero_disposition` int(11) DEFAULT NULL, |
| 8 | + `nature_mutation` varchar(255) DEFAULT '', |
| 9 | + `valeur_fonciere` decimal(12,3) DEFAULT 0.0, |
| 10 | + `adresse_numero` int(11) DEFAULT NULL, |
| 11 | + `adresse_suffixe` varchar(255) DEFAULT '', |
| 12 | + `adresse_nom_voie` varchar(255) DEFAULT '', |
| 13 | + `adresse_code_voie` varchar(255) DEFAULT '', |
| 14 | + `code_postal` varchar(255) DEFAULT '', |
| 15 | + `code_commune` varchar(255) DEFAULT '', |
| 16 | + `nom_commune` varchar(255) DEFAULT '', |
| 17 | + `code_departement` varchar(255) DEFAULT '', |
| 18 | + `ancien_code_commune` varchar(255) DEFAULT '', |
| 19 | + `ancien_nom_commune` varchar(255) DEFAULT '', |
| 20 | + `id_parcelle` varchar(255) DEFAULT '', |
| 21 | + `ancien_id_parcelle` varchar(255) DEFAULT '', |
| 22 | + `numero_volume` varchar(255) DEFAULT '', |
| 23 | + `lot1_numero` varchar(255) DEFAULT '', |
| 24 | + `lot1_surface_carrez` decimal(9,2) DEFAULT 0.0, |
| 25 | + `lot2_numero` varchar(255) DEFAULT '', |
| 26 | + `lot2_surface_carrez` decimal(9,2) DEFAULT 0.0, |
| 27 | + `lot3_numero` varchar(255) DEFAULT '', |
| 28 | + `lot3_surface_carrez` decimal(9,2) DEFAULT 0.0, |
| 29 | + `lot4_numero` varchar(255) DEFAULT '', |
| 30 | + `lot4_surface_carrez` decimal(9,2) DEFAULT 0.0, |
| 31 | + `lot5_numero` varchar(255) DEFAULT '', |
| 32 | + `lot5_surface_carrez` decimal(9,2) DEFAULT 0.0, |
| 33 | + `nombre_lots` int(11) DEFAULT NULL, |
| 34 | + `code_type_local` varchar(255) DEFAULT '', |
| 35 | + `type_local` varchar(255) DEFAULT '', |
| 36 | + `surface_reelle_bati` decimal(9,2) DEFAULT 0.0, |
| 37 | + `nombre_pieces_principales` int(11) DEFAULT NULL, |
| 38 | + `code_nature_culture` varchar(255) DEFAULT '', |
| 39 | + `nature_culture` varchar(255) DEFAULT '', |
| 40 | + `code_nature_culture_speciale` varchar(255) DEFAULT '', |
| 41 | + `nature_culture_speciale` varchar(255) DEFAULT '', |
| 42 | + `surface_terrain` decimal(12,3) DEFAULT 0.0, |
| 43 | + `longitude` decimal(9,7) DEFAULT 0.0, |
| 44 | + `latitude` decimal(9,7) DEFAULT 0.0, |
| 45 | + `section_prefixe` varchar(255) DEFAULT '', |
| 46 | + PRIMARY KEY (`id`), |
| 47 | + KEY `idx_sectionPrefixe` (`section_prefixe`), |
| 48 | + KEY `idx_commune` (`code_commune`), |
| 49 | + KEY `idx_date` (`date_mutation`), |
| 50 | + KEY `idx_parcelle` (`id_parcelle`), |
| 51 | + KEY `idx_section_commune` (`code_commune`,`section_prefixe`), |
| 52 | + KEY `id_mutation` (`id_mutation`) |
| 53 | +) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8; |
| 54 | +-- ) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8; |
| 55 | + |
| 56 | + |
| 57 | + |
| 58 | + |
0 commit comments