File: v9-ref-data_source-dynamic.sql

package info (click to toggle)
gnumed-server 22.19-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 45,148 kB
  • sloc: sql: 1,217,279; python: 15,659; sh: 1,582; makefile: 20
file content (46 lines) | stat: -rw-r--r-- 1,787 bytes parent folder | download | duplicates (7)
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
-- ==============================================================
-- GNUmed database schema change script
--
-- License: GPL v2 or later
-- Author: Karsten Hilbert
-- 
-- ==============================================================
-- $Id: v9-ref-data_source-dynamic.sql,v 1.1 2008-03-05 22:35:14 ncq Exp $
-- $Revision: 1.1 $

-- --------------------------------------------------------------
\set ON_ERROR_STOP 1

-- --------------------------------------------------------------
delete from audit.audited_tables where schema = 'public' and table_name = 'ref_source';

grant select, insert, update, delete on
	ref.data_source,
	ref.data_source_pk_seq
to group "gm-doctors";

select audit.add_table_for_audit('ref', 'data_source');

comment on table ref.data_source is
	'lists the available coding systems, classifications, ontologies and term lists';
comment on column ref.data_source.name_short is
	'shorthand for referring to this reference entry';
comment on column ref.data_source.name_long is
	'long, complete (, ?official) name for this reference entry';
comment on column ref.data_source.version is
	'the exact and non-ambigous version for this entry';
comment on column ref.data_source.description is
	'optional arbitrary description, should include external license';
comment on column ref.data_source.source is
'non-ambigous description of source; with this info in hand it
 must be possible to locate a copy of the external data set';

-- --------------------------------------------------------------
select gm.log_script_insertion('$RCSfile: v9-ref-data_source-dynamic.sql,v $', '$Revision: 1.1 $');

-- ==============================================================
-- $Log: v9-ref-data_source-dynamic.sql,v $
-- Revision 1.1  2008-03-05 22:35:14  ncq
-- - added
--
--