Function DatabaseRepair->create_table_missing_from_db
Definitions
sources/database_repair.php
- Table is not there so create it.
- Visibility: private
- Is abstract?: No
- Is static?: No
- Is final?: No
Parameters
Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
---|---|---|---|---|---|---|---|
$table_name | string | No | No | required parameter | N/A | N/A | Table name |
$table | array | No | No | required parameter | N/A | N/A | Table details |
$include_meta | boolean | No | No | required parameter | N/A | N/A | Make meta changes too |
Preview
Code (PHP)
/**
* Table is not there so create it.
*
* @param string $table_name Table name
* @param array $table Table details
* @param boolean $include_meta Make meta changes too
*/
private function create_table_missing_from_db(string $table_name, array $table, bool $include_meta)
* Table is not there so create it.
*
* @param string $table_name Table name
* @param array $table Table details
* @param boolean $include_meta Make meta changes too
*/
private function create_table_missing_from_db(string $table_name, array $table, bool $include_meta)