Default value for seed

This commit is contained in:
2021-12-20 22:43:32 -03:00
parent 34eedb93d7
commit 9f47c8a85f

View File

@ -20,7 +20,7 @@ final class TipoCuenta extends AbstractMigration
{
$this->table('tipos_cuenta')
->addColumn('descripcion', 'string')
->addColumn('color', 'string', ['length' => 6])
->addColumn('color', 'string', ['length' => 6, 'default' => 'ffffff'])
->create();
}
}