comparison src/main/java/de/intevation/lada/model/land/ZusatzWert.java @ 1135:f84b4fb82061

Let the database control the tree_modified column (disable insert and update)
author Raimund Renkert <raimund.renkert@intevation.de>
date Tue, 01 Nov 2016 15:01:03 +0100
parents 5a7488468cb2
children 1bf808b67403
comparison
equal deleted inserted replaced
1129:48c0132dbc85 1135:f84b4fb82061
42 private Integer probeId; 42 private Integer probeId;
43 43
44 @Column(name="pzs_id") 44 @Column(name="pzs_id")
45 private String pzsId; 45 private String pzsId;
46 46
47 @Column(name="tree_modified") 47 @Column(name="tree_modified", insertable=false, updatable=false)
48 private Timestamp treeModified; 48 private Timestamp treeModified;
49 49
50 @OneToOne 50 @OneToOne
51 @JoinColumn(name="probe_id", insertable=false, updatable=false) 51 @JoinColumn(name="probe_id", insertable=false, updatable=false)
52 private Probe probe; 52 private Probe probe;
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)