芝麻web文件管理V1.00
编辑当前文件:/home/mgatv524/public_html/db/migrations/20200115115935_add_report_schedule_message_migration.php
. */ use Phinx\Migration\AbstractMigration; /** * Class AddReportScheduleMessageMigration */ class AddReportScheduleMessageMigration extends AbstractMigration { /** @inheritdoc */ public function change() { $table = $this->table('reportschedule'); $table ->addColumn('message', 'string', ['null' => true, 'default' => null]) ->save(); } }