Skip to content

Instantly share code, notes, and snippets.

@lancespeelmon
Last active August 29, 2015 14:06
Show Gist options
  • Save lancespeelmon/f97ffe27c292b83b9160 to your computer and use it in GitHub Desktop.
Save lancespeelmon/f97ffe27c292b83b9160 to your computer and use it in GitHub Desktop.
KRAFDBCK-11191 KRAFDBCK-11230
DELIMITER /
CREATE TABLE COMM_SCHEDULE_ATTACHMENT_ID (
id bigint(19) not null auto_increment, primary key (id)
) ENGINE MyISAM
/
ALTER TABLE COMM_SCHEDULE_ATTACHMENT_ID auto_increment = 1
/
DELIMITER ;
--- a/src/main/java/org/kuali/kra/common/committee/meeting/CommitteeScheduleAttachmentsBase.java
+++ b/src/main/java/org/kuali/kra/common/committee/meeting/CommitteeScheduleAttachmentsBase.java
@@ -55,6 +55,7 @@ public abstract class CommitteeScheduleAttachmentsBase extends KraPersistableBus
private CommitteeScheduleBase committeeSchedule;
private String newUpdateUser;
private Timestamp newUpdateTimestamp;
+ private Long scheduleIdFk;
/**
* Gets the committeeSchedule attribute.
@@ -364,4 +365,12 @@ public abstract class CommitteeScheduleAttachmentsBase extends KraPersistableBus
return KraServiceLocator.getService(KcAttachmentService.class).getFileTypeIcon(this);
}
+ public Long getScheduleIdFk() {
+ return scheduleIdFk;
+ }
+
+ public void setScheduleIdFk(Long scheduleIdFk) {
+ this.scheduleIdFk = scheduleIdFk;
+ }
+
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment