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
|
-- ==============================================================
-- GNUmed database schema change script
--
-- License: GPL v2 or later
-- Author: Karsten Hilbert
--
-- ==============================================================
-- $Id: v9-ref-coding_system_root-dynamic.sql,v 1.2 2008-03-06 23:21:13 ncq Exp $
-- $Revision: 1.2 $
-- --------------------------------------------------------------
\set ON_ERROR_STOP 1
-- --------------------------------------------------------------
grant select, insert, update, delete on
ref.coding_system_root,
ref.coding_system_root_pk_coding_system_seq
to group "gm-doctors";
comment on table ref.coding_system_root is
'Base table for coding system tables providing common fields.';
comment on column ref.coding_system_root.fk_data_source is
'links to the data source for the external reference data set';
comment on column ref.coding_system_root.comment is
'an arbitrary comment on the code and/or term,
child tables will use this in different ways';
-- --------------------------------------------------------------
select gm.log_script_insertion('$RCSfile: v9-ref-coding_system_root-dynamic.sql,v $', '$Revision: 1.2 $');
-- ==============================================================
-- $Log: v9-ref-coding_system_root-dynamic.sql,v $
-- Revision 1.2 2008-03-06 23:21:13 ncq
-- - proper sequence name
--
-- Revision 1.1 2008/03/05 22:35:14 ncq
-- - added
--
--
|