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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
|
# GNUmed database system bootstrapping config file
#-------------------------------------------------
# license: GPL v2 or later
# author: Karsten Hilbert@gmx.net
#----------------------------------
[revision control]
file = $Source: /home/ncq/Projekte/cvs2git/vcs-mirror/gnumed/gnumed/server/bootstrap/update_db-v3_v4.conf,v $
version = $Revision: 1.9 $
#----------------------------------
[installation]
interactive = yes
keep temp files = no
description = $description$
This will update an existing GNUmed version 3
database to the version 4 schema. It does not do
any harm to the data contained within.
The existing database is cloned first. The copy is
then modified. The original database remains unchanged.
$description$
bundles = $bundles$
v3-v4-static
v3-v4-dynamic
$bundles$
#----------------------------------
[bundle v3-v4-static]
database alias = gnumed_v4
minimum postgresql version = 7.4
schema base directory = ../sql/v3-v4/static/
schema = $schema$
public-gm_services.sql
cfg-cfg_item.sql
cfg-cfg_str_array.sql
$schema$
#----------------------------------
[bundle v3-v4-dynamic]
database alias = gnumed_v4
minimum postgresql version = 7.4
schema base directory = ../sql/v3-v4/dynamic/
schema = $schema$
clin-episode.sql
blobs-v_latest_mugshot.sql
$schema$
#----------------------------------
[database gnumed_v4]
name = gnumed_v4
override name by = GM_CORE_DB
drop target database = 1
target version = v4
template database = gnumed_v3
template version = v3
server alias = local host
notification disable = 1
audit disable = 1
audit trail parent table = audit.audit_trail
audit trail table prefix = log_
audit fields table = audit.audit_fields
schema base directory = ../sql/v3-v4/
schema = $schema$
$schema$
superuser schema = $superuser schema$
superuser/transfer_users.sql
$superuser schema$
#----------------------------------
[server local host]
name =
port = 5432
template database = template1
super user alias = postgres
schema base directory = ../sql/v3-v4/
schema = $schema$
$schema$
#----------------------------------
[user GNUmed owner]
name = gm-dbo
password =
[user postgres]
name = postgres
#password =
#----------------------------------
# these really shouldn't be changed
#----------------------------------
[GnuMed defaults]
database owner alias = GNUmed owner
groups = $groups$
$groups$
#----------------------------------
# $Log: update_db-v3_v4.conf,v $
# Revision 1.9 2009-05-04 11:47:32 ncq
# - add commented out password option as a hint for Windows
#
# Revision 1.8 2007/11/09 14:43:20 ncq
# - disable auditing
#
# Revision 1.7 2007/11/07 22:56:27 ncq
# - set notification disable = 1
#
# Revision 1.6 2007/04/20 08:23:54 ncq
# - delete temp files
#
# Revision 1.5 2007/02/18 12:21:28 ncq
# - drop target database if it exists
#
# Revision 1.4 2007/01/24 11:03:07 ncq
# - add Release 0.2.4 workplace
#
# Revision 1.3 2007/01/23 14:02:08 ncq
# - backport from 0.2.4:
# - add static part
# - expect v4 target hash
#
# Revision 1.2 2007/01/19 14:10:56 ncq
# - add blobs.v_latest_mugshot
#
# Revision 1.1 2007/01/04 22:55:31 ncq
# - new
#
# Revision 1.21 2007/01/03 11:55:47 ncq
# - enable target database hashing
#
|