Piwik\
Contains database related helper functions.
The class defines the following methods:
createTable()
— Creates a new table in the database.createTable()
Creates a new table in the database.
Example:
```
$tableDefinition = "age
INT(11) NOT NULL AUTO_INCREMENT,
name
VARCHAR(255) NOT NULL";
DbHelper::createTable('tablename', $tableDefinition); ``
$nameWithoutPrefix
(string
) —
The name of the table without any piwik prefix.$createDefinition
(string
) —
The table create definition