feature/cierres #25

Open
aldarien wants to merge 446 commits from feature/cierres into develop
310 changed files with 801 additions and 11862 deletions
Showing only changes of commit 2680f51167 - Show all commits

View File

@ -18,7 +18,7 @@ class CreateAgente extends Phinx\Migration\AbstractMigration
->addColumn('telefono', 'integer', ['length' => 11, 'default' => null, 'null' => true])
->addColumn('correo', 'string', ['length' => 50, 'default' => null, 'null' => true])
->addColumn('direccion', 'integer', ['length' => 11, 'default' => null, 'null' => true])
->addColumn('giro', 'mediumtext', ['default' => null, 'null' => true])
->addColumn('giro', 'text', ['default' => null, 'null' => true])
->addColumn('abreviacion', 'string', ['length' => 20, 'default' => null, 'null' => true])
->create();
$this->execute('SET unique_checks=1; SET foreign_key_checks=1;');