芝麻web文件管理V1.00
编辑当前文件:/home/mgatv524/public_html/db/migrations/20220302152503_layout_remove_orientation_migration.php
. */ use Phinx\Migration\AbstractMigration; /** * Remove weather tiles module to merge both weather widgets into one * @phpcs:disable PSR1.Classes.ClassDeclaration.MissingNamespace */ class LayoutRemoveOrientationMigration extends AbstractMigration { /** * @inheritDoc */ public function change() { $table = $this->table('layout'); $table->removeColumn('orientation')->save(); } }