2025-10-06 23:21:50 -07:00
|
|
|
<?php
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
|
|
use Migrations\BaseMigration;
|
|
|
|
|
|
2026-08-21 23:57:55 -07:00
|
|
|
class AddDefaultSkuToProductSkus extends BaseMigration {
|
|
|
|
|
|
|
|
|
|
/**
|
2025-10-06 23:21:50 -07:00
|
|
|
* Change Method.
|
|
|
|
|
*
|
|
|
|
|
* More information on this method is available here:
|
|
|
|
|
* https://book.cakephp.org/migrations/4/en/migrations.html#the-change-method
|
|
|
|
|
* @return void
|
|
|
|
|
*/
|
2026-08-21 23:57:55 -07:00
|
|
|
public function change(): void {
|
|
|
|
|
$table = $this->table('product_skus');
|
|
|
|
|
$table->addColumn('default_sku', 'boolean', [
|
|
|
|
|
'default' => false,
|
|
|
|
|
'limit' => 11,
|
|
|
|
|
'null' => false,
|
|
|
|
|
]);
|
|
|
|
|
$table->update();
|
|
|
|
|
}
|
|
|
|
|
|
2025-10-06 23:21:50 -07:00
|
|
|
}
|