improve code : sql : document table action_gestion
This commit is contained in:
parent
322b74a014
commit
f00d5f8d51
2 changed files with 14 additions and 1 deletions
|
|
@ -116,7 +116,7 @@ if (!defined("NOALYSS_PACKAGE_REPOSITORY")) {
|
||||||
if (!defined("SYSINFO_DISPLAY")) {
|
if (!defined("SYSINFO_DISPLAY")) {
|
||||||
define("SYSINFO_DISPLAY", TRUE);
|
define("SYSINFO_DISPLAY", TRUE);
|
||||||
}
|
}
|
||||||
define("DBVERSION", 183);
|
define("DBVERSION", 184);
|
||||||
define("MONO_DATABASE", 25);
|
define("MONO_DATABASE", 25);
|
||||||
define("DBVERSIONREPO", 20);
|
define("DBVERSIONREPO", 20);
|
||||||
define('NOTFOUND', '--not found--');
|
define('NOTFOUND', '--not found--');
|
||||||
|
|
|
||||||
13
include/sql/patch/upgrade183.sql
Normal file
13
include/sql/patch/upgrade183.sql
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
begin;
|
||||||
|
COMMENT ON COLUMN public.action_gestion.f_id_dest IS 'third party';
|
||||||
|
COMMENT ON COLUMN public.action_gestion.ag_priority IS 'Low, medium, important';
|
||||||
|
COMMENT ON COLUMN public.action_gestion.ag_dest IS 'is the profile which has to take care of this action';
|
||||||
|
COMMENT ON COLUMN public.action_gestion.ag_owner IS 'is the owner of this action';
|
||||||
|
COMMENT ON COLUMN public.action_gestion.ag_contact IS 'contact of the third part';
|
||||||
|
COMMENT ON COLUMN public.action_gestion.ag_title IS 'title';
|
||||||
|
COMMENT ON COLUMN public.action_gestion.ag_timestamp IS '';
|
||||||
|
COMMENT ON COLUMN public.action_gestion.ag_ref IS 'its reference';
|
||||||
|
COMMENT ON COLUMN public.action_gestion.ag_state IS 'state of the action same as document_state';
|
||||||
|
|
||||||
|
insert into version (val,v_description) values (184,'document table action_gestion');
|
||||||
|
commit;
|
||||||
Loading…
Add table
Add a link
Reference in a new issue