• Модуль: perfmon
  • Путь к файлу: ~/bitrix/modules/perfmon/lib/sql/sequence.php
  • Класс: BitrixPerfmonSqlSequence
  • Вызов: Sequence::getModifyDdl
public function getModifyDdl(BaseObject $target, $dbType = '')
{
	switch ($dbType)
	{
	case "ORACLE":
		return array(
			$this->getDropDdl($dbType),
			$target->getCreateDdl($dbType),
		);
	default:
		return "// ".get_class($this).":getDropDdl for database type [".$dbType."] not implemented";
	}
}