1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
-- ==============================================================
-- GNUmed database schema change script
--
-- Source database version: v2
-- Target database version: v3
--
-- What it does:
-- - ...
--
-- License: GPL v2 or later
-- Author:
--
-- ==============================================================
-- $Id: cfg-cfg_str_array.sql,v 1.4 2007-09-24 23:31:17 ncq Exp $
-- $Revision: 1.4 $
-- --------------------------------------------------------------
\set ON_ERROR_STOP 1
-- --------------------------------------------------------------
insert into cfg.cfg_str_array
(fk_item, value)
values (
(select pk from cfg.cfg_item where workplace = 'Release 0.2.3'),
'{"gmProviderInboxPlugin","gmNotebookedPatientEditionPlugin","gmEMRBrowserPlugin","gmNotebookedProgressNoteInputPlugin","gmEMRJournalPlugin","gmShowMedDocs","gmScanIdxMedDocsPlugin","gmXdtViewer","gmManual","gmConfigRegistry"}'
);
--comment on forgot_to_edit_comment is
-- '';
-- --------------------------------------------------------------
select public.log_script_insertion('$RCSfile: cfg-cfg_str_array.sql,v $', '$Revision: 1.4 $');
-- ==============================================================
-- $Log: cfg-cfg_str_array.sql,v $
-- Revision 1.4 2007-09-24 23:31:17 ncq
-- - remove begin; commit; as it breaks the bootstrapper
--
-- Revision 1.3 2006/12/29 11:33:19 ncq
-- - Release 0.2.3 default workplace is called just that, "Release 0.2.3"
--
-- Revision 1.2 2006/10/30 16:49:53 ncq
-- - add xdt viewer as plugin
--
-- Revision 1.1 2006/10/08 09:06:05 ncq
-- - add workplace def
--
-- Revision 1.4 2006/09/28 14:39:51 ncq
-- - add comment template
--
-- Revision 1.3 2006/09/18 17:32:53 ncq
-- - make more fool-proof
--
-- Revision 1.2 2006/09/16 21:47:37 ncq
-- - improvements
--
-- Revision 1.1 2006/09/16 14:02:36 ncq
-- - use this as a template for change scripts
--
--
|