FIX: migraciones fallando

This commit is contained in:
Juan Pablo Vial
2025-05-07 19:23:37 -04:00
parent 43eb8ec758
commit 3903551176
11 changed files with 15 additions and 15 deletions

View File

@ -11,7 +11,7 @@ class CreateEscritura extends Phinx\Migration\AbstractMigration
$this->execute("ALTER DATABASE COLLATE='utf8mb4_general_ci';");
$this->table('escritura')
->addColumn('valor', 'bigint', ['length' => 20, 'null' => false])
->addColumn('valor', 'biginteger', ['length' => 20, 'null' => false])
->addColumn('fecha', 'date', ['null' => false])
->addColumn('uf', 'float', ['default' => null, 'null' => true])
->addColumn('abonado', 'integer', ['length' => 11, 'default' => 0])