95 lines
1.3 KiB
PHP
95 lines
1.3 KiB
PHP
<?php
|
|
|
|
use Phinx\Seed\AbstractSeed;
|
|
|
|
class BancoSeeder extends AbstractSeed
|
|
{
|
|
public function run(): void
|
|
{
|
|
$data = [
|
|
[
|
|
'id' => 1,
|
|
'nombre' => 'BBVA',
|
|
],
|
|
[
|
|
'id' => 2,
|
|
'nombre' => 'BCI',
|
|
],
|
|
[
|
|
'id' => 3,
|
|
'nombre' => 'BICE',
|
|
],
|
|
[
|
|
'id' => 4,
|
|
'nombre' => 'Chile',
|
|
],
|
|
[
|
|
'id' => 5,
|
|
'nombre' => 'Corpbanca',
|
|
],
|
|
[
|
|
'id' => 6,
|
|
'nombre' => 'Edwards',
|
|
],
|
|
[
|
|
'id' => 7,
|
|
'nombre' => 'Estado',
|
|
],
|
|
[
|
|
'id' => 8,
|
|
'nombre' => 'Falabella',
|
|
],
|
|
[
|
|
'id' => 9,
|
|
'nombre' => 'Itau',
|
|
],
|
|
[
|
|
'id' => 10,
|
|
'nombre' => 'Santander',
|
|
],
|
|
[
|
|
'id' => 11,
|
|
'nombre' => 'Scotiabank',
|
|
],
|
|
[
|
|
'id' => 12,
|
|
'nombre' => 'Security',
|
|
],
|
|
[
|
|
'id' => 13,
|
|
'nombre' => 'Carabineros',
|
|
],
|
|
[
|
|
'id' => 14,
|
|
'nombre' => '',
|
|
],
|
|
[
|
|
'id' => 15,
|
|
'nombre' => 'Metlife',
|
|
],
|
|
[
|
|
'id' => 16,
|
|
'nombre' => 'Consorcio',
|
|
],
|
|
[
|
|
'id' => 17,
|
|
'nombre' => 'Internacional',
|
|
],
|
|
[
|
|
'id' => 18,
|
|
'nombre' => 'Coopeuch',
|
|
],
|
|
[
|
|
'id' => 19,
|
|
'nombre' => 'Ripley',
|
|
],
|
|
];
|
|
|
|
$this->execute('SET unique_checks=0; SET foreign_key_checks=0;');
|
|
$this->table('banco')
|
|
->insert($data)
|
|
->saveData();
|
|
$this->execute('SET unique_checks=1; SET foreign_key_checks=1;');
|
|
}
|
|
}
|