• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/location/migration/migrate.php
  • Класс: BitrixSaleLocationMigrationCUpdaterLocationPro
  • Вызов: CUpdaterLocationPro::dropTable
protected function dropTable($tableName = '')
{
	if($tableName == '')
		return false;

	global $DB;

	if($this->TableExists($tableName))
		$DB->query('drop table '.$DB->ForSql($tableName));

	return true;
}