$sql->createTableInner()
Creates the inner query for the columns in a CREATE TABLE query
$sql->createTableInner(array $columns): array
Parameters
Name | Type | Default | Description |
---|---|---|---|
$columnsrequired | array |
no default value | Array of column definition arrays, see Kirby\Database\Sql::createColumn() |
Return type
array
Array with a `query` string and `bindings`, `keys` and `unique` arrays
This method modifies the existing $sql
object it is applied to and returns it again.