/**
* CREATE TABLE statement
*
* @var string
*/
protected $createTableStr;
public function __construct(BaseConnection
$db) { parent::
__construct($db);
$this->createTableStr = '%s ' .
$this->db->
escapeIdentifiers($this->db->schema
) . ".%s (%s\n) ";
$this->renameTableStr = 'EXEC sp_rename [' .
$this->db->
escapeIdentifiers($this->db->schema
) . '.%s] , %s ;';
$this->dropConstraintStr = 'ALTER TABLE ' .
$this->db->
escapeIdentifiers($this->db->schema
) . '.%s DROP CONSTRAINT %s';
$this->dropIndexStr = 'DROP INDEX %s ON ' .
$this->db->
escapeIdentifiers($this->db->schema
) . '.%s';
} /**
* CREATE TABLE attributes
*/
protected function _createTableAttributes(array
$attributes): string
{