Initial Upload

This commit is contained in:
Matt Batchelder
2025-12-02 10:32:59 -05:00
commit 05ce0da296
2240 changed files with 467811 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<?php
use Phinx\Migration\AbstractMigration;
class WidgetFromToDtMigration extends AbstractMigration
{
/**
* Change Method.
*/
public function change()
{
$widget = $this->table('widget');
$widget
->addColumn('fromDt', 'integer')
->addColumn('toDt', 'integer')
->save();
$this->execute('UPDATE `widget` SET fromDt = 0, toDt = 2147483647;');
}
}