noalyss-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Noalyss-commit] [noalyss] 13/73: SQL file for action


From: Dany De Bontridder
Subject: [Noalyss-commit] [noalyss] 13/73: SQL file for action
Date: Fri, 28 May 2021 05:26:20 -0400 (EDT)

sparkyx pushed a commit to branch master
in repository noalyss.

commit 98718aa2e937714c18d221e3159149fb799b74f0
Author: sparkyx <danydb@noalyss.eu>
AuthorDate: Sat Apr 10 08:22:35 2021 +0200

    SQL file for action
---
 .../database/action_gestion_comment_sql.class.php  | 67 +++++++++++++++++
 include/database/action_gestion_sql.class.php      | 83 ++++++++++++++++++++++
 2 files changed, 150 insertions(+)

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 0000000..532acb9
--- /dev/null
+++ b/include/database/action_gestion_comment_sql.class.php
@@ -0,0 +1,67 @@
+<?php
+
+/**
+ * Autogenerated file 
+ *   This file is part of NOALYSS.
+ *
+ *   NOALYSS is free software; you can redistribute it and/or modify
+ *   it under the terms of the GNU General Public License as published by
+ *   the Free Software Foundation; either version 2 of the License, or
+ *   (at your option) any later version.
+ *
+ *   NOALYSS is distributed in the hope that it will be useful,
+ *   but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *   GNU General Public License for more details.
+ *
+ *   You should have received a copy of the GNU General Public License
+ *   along with NOALYSS; if not, write to the Free Software
+ *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ */
+require_once NOALYSS_INCLUDE.'/lib/noalyss_sql.class.php';
+require_once NOALYSS_INCLUDE.'/class/database.class.php';
+
+/**
+ * class_action_gestion_comment_sql.php
+ *
+ * @file
+ * @brief abstract of the table public.action_gestion_comment */
+class Action_Gestion_Comment_SQL extends Noalyss_SQL
+{
+
+    function __construct(DatabaseCore $p_cn, $p_id=-1)
+    {
+        $this->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 0000000..97d51b3
--- /dev/null
+++ b/include/database/action_gestion_sql.class.php
@@ -0,0 +1,83 @@
+<?php
+
+/**
+ * Autogenerated file 
+ *   This file is part of NOALYSS.
+ *
+ *   NOALYSS is free software; you can redistribute it and/or modify
+ *   it under the terms of the GNU General Public License as published by
+ *   the Free Software Foundation; either version 2 of the License, or
+ *   (at your option) any later version.
+ *
+ *   NOALYSS is distributed in the hope that it will be useful,
+ *   but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *   GNU General Public License for more details.
+ *
+ *   You should have received a copy of the GNU General Public License
+ *   along with NOALYSS; if not, write to the Free Software
+ *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ */
+require_once NOALYSS_INCLUDE.'/lib/noalyss_sql.class.php';
+require_once NOALYSS_INCLUDE.'/class/database.class.php';
+
+/**
+ * class_action_gestion_sql.php
+ *
+ * @file
+ * @brief abstract of the table public.action_gestion */
+class Action_gestion_SQL extends Noalyss_SQL
+{
+
+    function __construct(DatabaseCore $p_cn, $p_id=-1)
+    {
+        $this->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);
+    }
+
+}



reply via email to

[Prev in Thread] Current Thread [Next in Thread]