- 批量删除数据库中的字段
$tables = [];
foreach ($tables as $table)
{
# 检查字段是否存在,不存在的才执行删除
$exists = DB::select("describe $table `clue_channel`");
if (is_array($exists) && sizeof($exists) > 0)
{
DB::select("ALTER TABLE $table DROP `clue_channel`;");
}
}