芝麻web文件管理V1.00
编辑当前文件:/home/mgatv524/public_html/db/migrations/20220225105237_merge_weather_widgets.php
. */ use Phinx\Migration\AbstractMigration; /** * Remove weather tiles module to merge both weather widgets into one * @phpcs:disable PSR1.Classes.ClassDeclaration.MissingNamespace */ class MergeWeatherWidgets extends AbstractMigration { public function change() { // Delete weather tiles table $this->execute('DELETE FROM `module` WHERE module = \'weather\' '); } }