DaanHoogland commented on a change in pull request #5785:
URL: https://github.com/apache/cloudstack/pull/5785#discussion_r771290966
##########
File path: engine/schema/src/main/java/com/cloud/usage/UsageVMSnapshotVO.java
##########
@@ -30,9 +33,14 @@
@Table(name = "usage_vmsnapshot")
public class UsageVMSnapshotVO implements InternalIdentity {
+ @Id
+ @GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name = "id")
+ private Long id;
+
+ @Column(name = "volume_id")
// volumeId
Review comment:
let's get rid of this silly comment
##########
File path:
engine/schema/src/main/java/com/cloud/usage/UsageSnapshotOnPrimaryVO.java
##########
@@ -30,9 +33,14 @@
@Table(name = "usage_snapshot_on_primary")
public class UsageSnapshotOnPrimaryVO implements InternalIdentity {
+ @Id
+ @GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name = "id")
+ private Long id;
+
+ @Column(name = "volume_id")
// volumeId
Review comment:
let's get rid of this silly comment
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]