table('message_notifications'); $table->addColumn('template_context', 'json', ['comment' => '模板上下文', 'after' => 'template_code']) ->removeColumn('template_content') ->update(); } public function down(): void { $table = $this->table('message_notifications'); $table->addColumn('template_content', 'text', ['comment' => '模板内容', 'after' => 'template_code']) ->removeColumn('template_context') ->update(); } }