Files
oficial/app/resources/database/migrations/20211113010317_create_agente.php

22 lines
1020 B
PHP
Raw Normal View History

2024-11-28 11:37:26 -03:00
<?php
use Phinx\Migration\AbstractMigration;
class CreateAgente extends AbstractMigration
{
public function change(): void
{
$this->table('agente')
->addColumn('tipo', 'integer', ['null' => true, 'default' => null])
->addColumn('rut', 'integer', ['null' => true, 'default' => null])
->addColumn('descripcion', 'string', ['null' => true, 'default' => null, 'limit' => 100])
->addColumn('representante', 'string', ['null' => true, 'default' => null, 'limit' => 100])
->addColumn('telefono', 'integer', ['null' => true, 'default' => null])
->addColumn('correo', 'string', ['null' => true, 'default' => null, 'limit' => 100])
->addColumn('direccion', 'string', ['null' => true, 'default' => null, 'limit' => 100])
->addColumn('giro', 'text', ['null' => true, 'default' => null])
->addColumn('abreviacion', 'text', ['null' => true, 'default' => null, 'limit' => 20])
->create();
}
}