From 98718aa2e937714c18d221e3159149fb799b74f0 Mon Sep 17 00:00:00 2001 From: sparkyx Date: Sat, 10 Apr 2021 08:22:35 +0200 Subject: [PATCH] SQL file for action --- .../action_gestion_comment_sql.class.php | 67 +++++++++++++++ include/database/action_gestion_sql.class.php | 83 +++++++++++++++++++ 2 files changed, 150 insertions(+) create mode 100644 include/database/action_gestion_comment_sql.class.php create mode 100644 include/database/action_gestion_sql.class.php diff --git a/include/database/action_gestion_comment_sql.class.php b/include/database/action_gestion_comment_sql.class.php new file mode 100644 index 000000000..532acb9b1 --- /dev/null +++ b/include/database/action_gestion_comment_sql.class.php @@ -0,0 +1,67 @@ +table="public.action_gestion_comment"; + $this->primary_key="agc_id"; + /* + * List of columns + */ + $this->name=array( + "agc_id"=>"agc_id" + , "ag_id"=>"ag_id" + , "agc_date"=>"agc_date" + , "agc_comment"=>"agc_comment" + , "tech_user"=>"tech_user" + ); + /* + * Type of columns + */ + $this->type=array( + "agc_id"=>"numeric" + , "ag_id"=>"numeric" + , "agc_date"=>"timestamp with time zone" + , "agc_comment"=>"text" + , "tech_user"=>"text" + ); + + + $this->default=array( + "agc_id"=>"auto", + "agc_date"=>"auto" + ); + + $this->date_format="DD.MM.YYYY"; + parent::__construct($p_cn, $p_id); + } + +} diff --git a/include/database/action_gestion_sql.class.php b/include/database/action_gestion_sql.class.php new file mode 100644 index 000000000..97d51b388 --- /dev/null +++ b/include/database/action_gestion_sql.class.php @@ -0,0 +1,83 @@ +table="public.action_gestion"; + $this->primary_key="ag_id"; + /* + * List of columns + */ + $this->name=array( + "ag_id"=>"ag_id" + , "ag_type"=>"ag_type" + , "f_id_dest"=>"f_id_dest" + , "ag_title"=>"ag_title" + , "ag_timestamp"=>"ag_timestamp" + , "ag_ref"=>"ag_ref" + , "ag_hour"=>"ag_hour" + , "ag_priority"=>"ag_priority" + , "ag_dest"=>"ag_dest" + , "ag_owner"=>"ag_owner" + , "ag_contact"=>"ag_contact" + , "ag_state"=>"ag_state" + , "ag_remind_date"=>"ag_remind_date" + ); + /* + * Type of columns + */ + $this->type=array( + "ag_id"=>"numeric" + , "ag_type"=>"numeric" + , "f_id_dest"=>"numeric" + , "ag_title"=>"text" + , "ag_timestamp"=>"timestamp without time zone" + , "ag_ref"=>"text" + , "ag_hour"=>"text" + , "ag_priority"=>"numeric" + , "ag_dest"=>"numeric" + , "ag_owner"=>"text" + , "ag_contact"=>"numeric" + , "ag_state"=>"numeric" + , "ag_remind_date"=>"date" + ); + + + $this->default=array( + "ag_id"=>"auto", + "ag_timestamp"=>"auto" + ); + + $this->date_format="DD.MM.YYYY"; + parent::__construct($p_cn, $p_id); + } + +}