Files
oficial/app/resources/database/migrations/20241113010900_create_datos_proveedores.php
Juan Pablo Vial f9e079cc42 Migraciones
2024-11-20 21:26:03 -03:00

32 lines
1.2 KiB
PHP

<?php
declare(strict_types=1);
use Phinx\Migration\AbstractMigration;
final class CreateDatosProveedores extends AbstractMigration
{
/**
* Change Method.
*
* Write your reversible migrations using this method.
*
* More information on writing migrations is available here:
* https://book.cakephp.org/phinx/0/en/migrations.html#the-change-method
*
* Remember to call "create()" or "update()" and NOT "save()" when working
* with the Table class.
*/
public function change(): void
{
$this->table('datos_proveedores')
->addColumn('proveedor_rut', 'integer', ['signed' => false, 'null' => false])
->addForeignKey('proveedor_rut', 'proveedores', ['rut'], ['delete' => 'CASCADE', 'update' => 'CASCADE'])
->addColumn('direccion_id', 'integer', ['signed' => false, 'null' => true])
->addForeignKey('direccion_id', 'direccion', ['id'], ['delete' => 'CASCADE', 'update' => 'CASCADE'])
->addColumn('telefono', 'string', ['limit' => 255, 'null' => true])
->addColumn('giro', 'string', ['limit' => 255, 'null' => true])
->create();
}
}