Fixed some migrations
This commit is contained in:
@@ -49,6 +49,7 @@ final class WarehouseOfferVersioning extends AbstractMigration
|
||||
// Use Phinx schema builder to add columns to the WarehouseOffer table
|
||||
$warehouseOffer = $this->table('WarehouseOffer');
|
||||
$warehouseOffer
|
||||
->addColumn('contactPerson', 'string', ['limit' => 255, 'null' => true, "after" => 'customerName'])
|
||||
->addColumn('contactPersonEmail', 'string', ['limit' => 255, 'null' => true, 'after' => 'contactPerson'])
|
||||
->addColumn('lastSentDate', 'integer', ['null' => true, 'after' => 'status'])
|
||||
->addColumn('version', 'integer', ['default' => 1, 'after' => 'id'])
|
||||
|
||||
Reference in New Issue
Block a user