use t_database_rename_to;
use t_database_set_schema;
use t_database_action;
- use t_database_action_property;
protected const pr_QUERY_COMMAND = 'alter domain';
public function __construct() {
parent::__construct();
;
- $this->action = NULL;
- $this->action_property = NULL;
- $this->name = NULL;
- $this->owner_to = NULL;
- $this->rename_to = NULL;
- $this->set_schema = NULL
+ $this->action = NULL;
+ $this->name = NULL;
+ $this->owner_to = NULL;
+ $this->rename_to = NULL;
+ $this->set_schema = NULL
$this->expression = NULL;
$this->constraint = NULL;
*/
public function __destruct() {
unset($this->action);
- unset($this->action_property);
unset($this->name);
unset($this->owner_to);
unset($this->rename_to);
class c_database_alter_coalation extends c_database_query {
use t_database_action;
use t_database_action_property;
- use t_database_action_parameter;
use t_database_name;
use t_database_owner_to;
use t_database_rename_to;
public function __construct() {
parent::__construct();
- $this->action = NULL;
- $this->action_property = NULL;
- $this->action_parameter = NULL;
- $this->name = NULL;
- $this->owner_to = NULL;
- $this->rename_to = NULL;
+ $this->action = NULL;
+ $this->action_property = NULL;
+ $this->name = NULL;
+ $this->owner_to = NULL;
+ $this->rename_to = NULL;
}
/**
public function __destruct() {
unset($this->action);
unset($this->action_property);
- unset($this->action_parameter);
unset($this->name);
unset($this->owner_to);
unset($this->rename_to);
*/
class c_database_alter_foreign_data_wrapper extends c_database_query {
use t_database_action;
- use t_database_action_property;
- use t_database_action_parameter;
use t_database_handler;
use t_database_name;
use t_database_options;
public function __construct() {
parent::__construct();
- $this->action = NULL;
- $this->action_property = NULL;
- $this->action_parameter = NULL;
- $this->handler = NULL;
- $this->name = NULL;
- $this->options = NULL;
- $this->owner_to = NULL;
- $this->rename_to = NULL;
- $this->validator = NULL;
+ $this->action = NULL;
+ $this->handler = NULL;
+ $this->name = NULL;
+ $this->options = NULL;
+ $this->owner_to = NULL;
+ $this->rename_to = NULL;
+ $this->validator = NULL;
}
/**
*/
public function __destruct() {
unset($this->action);
- unset($this->action_property);
- unset($this->action_parameter);
unset($this->handler);
unset($this->name);
unset($this->options);
class c_database_alter_foreign_table extends c_database_query {
protected const pr_QUERY_COMMAND = 'alter foreign table';
use t_database_action;
- use t_database_action_property;
- use t_database_action_parameter;
use t_database_name;
use t_database_rename_column_to;
use t_database_rename_to;
parent::__construct();
$this->action = NULL;
- $this->action_property = NULL;
- $this->action_parameter = NULL;
$this->name = NULL;
$this->rename_column_to = NULL;
$this->rename_to = NULL;
parent::__destruct();
unset($this->action);
- unset($this->action_property);
- unset($this->action_parameter);
unset($this->name);
unset($this->rename_column_to);
unset($this->rename_to);