Mercurial > dive4elements > river
comparison flys-backend/ChangeLog @ 1214:32ee9babe42c
Schema: Argh! Added distance_{vl|hf|vr} to
wrong table.
flys-backend/trunk@2340 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Sascha L. Teichmann <sascha.teichmann@intevation.de> |
---|---|
date | Fri, 15 Jul 2011 15:53:33 +0000 |
parents | cc88db4a5b34 |
children | 8aef353e54fb |
comparison
equal
deleted
inserted
replaced
1213:cc88db4a5b34 | 1214:32ee9babe42c |
---|---|
1 2011-07-15 Sascha L. Teichmann <sascha.teichmann@intevation.de> | |
2 | |
3 * doc/schema/postgresql.sql: Argh! Added distance_{vl|hf|vr} to | |
4 wrong table. | |
5 To update existing databases: | |
6 BEGIN; | |
7 ALTER TABLE hyk_entries DROP COLUMN distance_vl; | |
8 ALTER TABLE hyk_entries DROP COLUMN distance_hf; | |
9 ALTER TABLE hyk_entries DROP COLUMN distance_vr; | |
10 ALTER TABLE hyk_formations ADD COLUMN distance_vl NUMERIC NOT NULL; | |
11 ALTER TABLE hyk_formations ADD COLUMN distance_hf NUMERIC NOT NULL; | |
12 ALTER TABLE hyk_formations ADD COLUMN distance_vr NUMERIC NOT NULL; | |
13 COMMIT; | |
14 | |
15 * src/main/java/de/intevation/flys/model/HYKFormation.java, | |
16 src/main/java/de/intevation/flys/model/HYKEntry.java: | |
17 Adjusted Hibernate models. | |
18 | |
1 2011-07-15 Sascha L. Teichmann <sascha.teichmann@intevation.de> | 19 2011-07-15 Sascha L. Teichmann <sascha.teichmann@intevation.de> |
2 | 20 |
3 * src/main/java/de/intevation/flys/utils/FileTools.java: Added method | 21 * src/main/java/de/intevation/flys/utils/FileTools.java: Added method |
4 walkTree() to traverse a directory tree. To be reused in HYK parser. | 22 walkTree() to traverse a directory tree. To be reused in HYK parser. |
5 | 23 |