SQL file for action
This commit is contained in:
parent
eb281c1ff9
commit
98718aa2e9
2 changed files with 150 additions and 0 deletions
67
include/database/action_gestion_comment_sql.class.php
Normal file
67
include/database/action_gestion_comment_sql.class.php
Normal file
|
|
@ -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);
|
||||
}
|
||||
|
||||
}
|
||||
83
include/database/action_gestion_sql.class.php
Normal file
83
include/database/action_gestion_sql.class.php
Normal file
|
|
@ -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);
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue