product attributes deleted field not added to migration
This commit is contained in:
@@ -55,5 +55,12 @@ class AddSoftDeleteToAllTables extends BaseMigration
|
|||||||
'null' => true,
|
'null' => true,
|
||||||
]);
|
]);
|
||||||
$table->update();
|
$table->update();
|
||||||
|
|
||||||
|
$table = $this->table('product_attributes');
|
||||||
|
$table->addColumn('deleted', 'datetime', [
|
||||||
|
'default' => null,
|
||||||
|
'null' => true,
|
||||||
|
]);
|
||||||
|
$table->update();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user