Files
oficial/app/resources/database/migrations/20141101080038_create_facturas.php

24 lines
959 B
PHP
Raw Normal View History

2024-12-18 19:48:00 -03:00
<?php
use Phinx\Db\Adapter\MysqlAdapter;
class CreateFacturas 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('facturas')
2025-01-16 19:33:21 -03:00
->addColumn('venta_id', 'integer', ['length' => 10, 'signed' => false])
->addColumn('index', 'integer', ['signed' => false])
->addColumn('proporcion', 'double', ['signed' => false]) // %
->addColumn('cliente_rut', 'integer', ['length' => 10, 'signed' => false])
2024-12-18 19:48:00 -03:00
->addForeignKey('venta_id', 'venta', 'id', ['delete' => 'cascade', 'update' => 'cascade'])
2025-01-16 19:33:21 -03:00
->addForeignKey('cliente_rut', 'personas', 'rut', ['delete' => 'cascade', 'update' => 'cascade'])
2024-12-18 19:48:00 -03:00
->create();
$this->execute('SET unique_checks=1; SET foreign_key_checks=1;');
}
}