Migraciones

This commit is contained in:
Juan Pablo Vial
2025-01-16 19:33:21 -03:00
parent 2579b0aa06
commit 7578775fed
3 changed files with 29 additions and 26 deletions

View File

@ -1,22 +0,0 @@
<?php
use Phinx\Db\Adapter\MysqlAdapter;
class CreateFacturaVenta extends Phinx\Migration\AbstractMigration
{
public function change(): void
{
$this->execute('SET unique_checks=0; SET foreign_key_checks=0;');
$this->execute("ALTER DATABASE CHARACTER SET 'utf8mb4';");
$this->execute("ALTER DATABASE COLLATE='utf8mb4_general_ci';");
$this->table('factura_venta')
->addColumn('factura_id', 'integer', ['length' => 10, 'null' => false, 'signed' => false])
->addColumn('venta_id', 'integer', ['length' => 10, 'null' => false, 'signed' => false])
->addColumn('valor', 'double', ['null' => false])
->addForeignKey('factura_id', 'factura_proyecto_operador', 'id', ['delete' => 'cascade', 'update' => 'cascade'])
->addForeignKey('venta_id', 'venta', 'id', ['delete' => 'cascade', 'update' => 'cascade'])
->create();
$this->execute('SET unique_checks=1; SET foreign_key_checks=1;');
}
}

View File

@ -0,0 +1,24 @@
<?php
use Phinx\Db\Adapter\MysqlAdapter;
class CreateVentaDatosFacturas extends Phinx\Migration\AbstractMigration
{
public function change(): void
{
$this->execute('SET unique_checks=0; SET foreign_key_checks=0;');
$this->execute("ALTER DATABASE CHARACTER SET 'utf8mb4';");
$this->execute("ALTER DATABASE COLLATE='utf8mb4_general_ci';");
$this->table('venta_datos_facturas')
->addColumn('venta_id', 'integer', ['length' => 10, 'signed' => false])
->addColumn('fecha', 'date')
->addColumn('uf', 'string', ['length' => 50]) // fecha, valor
->addColumn('ipc', 'string', ['length' => 50]) // fecha, valor
->addColumn('terreno', 'integer', ['signed' => false])
->addColumn('unidades', 'text') // id, precios, prorrateo
->addForeignKey('venta_id', 'venta', 'id', ['delete' => 'cascade', 'update' => 'cascade'])
->create();
$this->execute('SET unique_checks=1; SET foreign_key_checks=1;');
}
}

View File

@ -11,11 +11,12 @@ class CreateFacturas extends Phinx\Migration\AbstractMigration
$this->execute("ALTER DATABASE COLLATE='utf8mb4_general_ci';"); $this->execute("ALTER DATABASE COLLATE='utf8mb4_general_ci';");
$this->table('facturas') $this->table('facturas')
->addColumn('venta_id', 'integer', ['length' => 10, 'null' => false, 'signed' => false]) ->addColumn('venta_id', 'integer', ['length' => 10, 'signed' => false])
->addColumn('index', 'integer', ['length' => 10, 'null' => false, 'signed' => false]) ->addColumn('index', 'integer', ['signed' => false])
->addColumn('proporcion', 'double', ['null' => false, 'signed' => false]) ->addColumn('proporcion', 'double', ['signed' => false]) // %
->addColumn('data', 'text', ['null' => false]) ->addColumn('cliente_rut', 'integer', ['length' => 10, 'signed' => false])
->addForeignKey('venta_id', 'venta', 'id', ['delete' => 'cascade', 'update' => 'cascade']) ->addForeignKey('venta_id', 'venta', 'id', ['delete' => 'cascade', 'update' => 'cascade'])
->addForeignKey('cliente_rut', 'personas', 'rut', ['delete' => 'cascade', 'update' => 'cascade'])
->create(); ->create();
$this->execute('SET unique_checks=1; SET foreign_key_checks=1;'); $this->execute('SET unique_checks=1; SET foreign_key_checks=1;');
} }