芝麻web文件管理V1.00
编辑当前文件:/home/mgatv524/www/midiatech/db/migrations/20190521102635_playlist_duration_update_at_timestamp.php
. */ use Phinx\Migration\AbstractMigration; /** * Class PlaylistDurationUpdateAtTimestamp */ class PlaylistDurationUpdateAtTimestamp extends AbstractMigration { /** @inheritDoc */ public function change() { $table = $this->table('playlist'); $table ->changeColumn('requiresDurationUpdate', 'integer', ['limit' => \Phinx\Db\Adapter\MysqlAdapter::INT_REGULAR, 'default' => 0, 'null' => false]) ->save(); } }