Files
oficial/app/resources/database/seeds/20141101080101_provincia_seeder.php
2024-12-18 20:33:15 -03:00

289 lines
4.6 KiB
PHP

<?php
use Phinx\Seed\AbstractSeed;
class ProvinciaSeeder extends AbstractSeed
{
public function run(): void
{
$data = [
[
'id' => 11,
'descripcion' => 'Iquique',
'region' => 1,
],
[
'id' => 14,
'descripcion' => 'Tamarugal',
'region' => 1,
],
[
'id' => 21,
'descripcion' => 'Antofagasta',
'region' => 2,
],
[
'id' => 22,
'descripcion' => 'El Loa',
'region' => 2,
],
[
'id' => 23,
'descripcion' => 'Tocopilla',
'region' => 2,
],
[
'id' => 31,
'descripcion' => 'Copiap',
'region' => 3,
],
[
'id' => 32,
'descripcion' => 'Chañaral',
'region' => 3,
],
[
'id' => 33,
'descripcion' => 'Huasco',
'region' => 3,
],
[
'id' => 41,
'descripcion' => 'Elqui',
'region' => 4,
],
[
'id' => 42,
'descripcion' => 'Choapa',
'region' => 4,
],
[
'id' => 43,
'descripcion' => 'Limari',
'region' => 4,
],
[
'id' => 51,
'descripcion' => 'Valparaíso',
'region' => 5,
],
[
'id' => 52,
'descripcion' => 'Isla de Pascua',
'region' => 5,
],
[
'id' => 53,
'descripcion' => 'Los Andes',
'region' => 5,
],
[
'id' => 54,
'descripcion' => 'Petorca',
'region' => 5,
],
[
'id' => 55,
'descripcion' => 'Quillota',
'region' => 5,
],
[
'id' => 56,
'descripcion' => 'San Antonio',
'region' => 5,
],
[
'id' => 57,
'descripcion' => 'San Felipe',
'region' => 5,
],
[
'id' => 58,
'descripcion' => 'Marga Marga',
'region' => 5,
],
[
'id' => 61,
'descripcion' => 'Cachapoal',
'region' => 6,
],
[
'id' => 62,
'descripcion' => 'Cardenal Caro',
'region' => 6,
],
[
'id' => 63,
'descripcion' => 'Colchagua',
'region' => 6,
],
[
'id' => 71,
'descripcion' => 'Talca',
'region' => 7,
],
[
'id' => 72,
'descripcion' => 'Cauquenes',
'region' => 7,
],
[
'id' => 73,
'descripcion' => 'Curico',
'region' => 7,
],
[
'id' => 74,
'descripcion' => 'Linares',
'region' => 7,
],
[
'id' => 81,
'descripcion' => 'Concepci',
'region' => 8,
],
[
'id' => 82,
'descripcion' => 'Arauco',
'region' => 8,
],
[
'id' => 83,
'descripcion' => 'Bío- Bío',
'region' => 8,
],
[
'id' => 84,
'descripcion' => 'Ñuble',
'region' => 8,
],
[
'id' => 91,
'descripcion' => 'Cautín',
'region' => 9,
],
[
'id' => 92,
'descripcion' => 'Malleco',
'region' => 9,
],
[
'id' => 101,
'descripcion' => 'Llanquihue',
'region' => 10,
],
[
'id' => 102,
'descripcion' => 'Chiloe',
'region' => 10,
],
[
'id' => 103,
'descripcion' => 'Osorno',
'region' => 10,
],
[
'id' => 104,
'descripcion' => 'Palena',
'region' => 10,
],
[
'id' => 111,
'descripcion' => 'Coihaique',
'region' => 11,
],
[
'id' => 112,
'descripcion' => 'Aisén',
'region' => 11,
],
[
'id' => 113,
'descripcion' => 'Capitan Prat',
'region' => 11,
],
[
'id' => 114,
'descripcion' => 'General Carrera',
'region' => 11,
],
[
'id' => 121,
'descripcion' => 'Magallanes',
'region' => 12,
],
[
'id' => 122,
'descripcion' => 'Antártica Chilena',
'region' => 12,
],
[
'id' => 123,
'descripcion' => 'Tierra del Fuego',
'region' => 12,
],
[
'id' => 124,
'descripcion' => 'Ultima Esperanza',
'region' => 12,
],
[
'id' => 131,
'descripcion' => 'Santiago',
'region' => 13,
],
[
'id' => 132,
'descripcion' => 'Cordillera',
'region' => 13,
],
[
'id' => 133,
'descripcion' => 'Chacabuco',
'region' => 13,
],
[
'id' => 134,
'descripcion' => 'Maipo',
'region' => 13,
],
[
'id' => 135,
'descripcion' => 'Melipilla',
'region' => 13,
],
[
'id' => 136,
'descripcion' => 'Talagante',
'region' => 13,
],
[
'id' => 141,
'descripcion' => 'Valdivia',
'region' => 14,
],
[
'id' => 142,
'descripcion' => 'Ranco',
'region' => 14,
],
[
'id' => 151,
'descripcion' => 'Arica',
'region' => 15,
],
[
'id' => 152,
'descripcion' => 'Parinacota',
'region' => 15,
],
];
$this->execute('SET unique_checks=0; SET foreign_key_checks=0;');
$this->table('provincia')
->insert($data)
->saveData();
$this->execute('SET unique_checks=1; SET foreign_key_checks=1;');
}
}