Skip to content

Commit

Permalink
LetterSoundContributionEvent - Addressed Comments elimu-ai#1677
Browse files Browse the repository at this point in the history
  • Loading branch information
Sneha65 committed Jul 13, 2024
1 parent 46291bd commit a944227
Show file tree
Hide file tree
Showing 6 changed files with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package ai.elimu.dao.jpa;

import ai.elimu.model.contributor.ContributionEvent;
import ai.elimu.dao.LetterSoundContributionEventDao;
import ai.elimu.model.content.LetterSoundCorrespondence;
import ai.elimu.model.contributor.Contributor;
Expand Down
1 change: 0 additions & 1 deletion src/main/java/ai/elimu/util/db/DbContentImportHelper.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
import ai.elimu.model.content.Word;
import ai.elimu.model.content.multimedia.Image;
import ai.elimu.model.contributor.*;
import ai.elimu.model.contributor.LetterSoundContributionEvent;
import ai.elimu.model.enums.Role;
import ai.elimu.model.v2.enums.Environment;
import ai.elimu.model.v2.enums.Language;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
import org.springframework.web.bind.annotation.RequestMethod;
import ai.elimu.dao.LetterSoundDao;
import ai.elimu.model.contributor.Contributor;
import ai.elimu.model.contributor.LetterSoundContributionEvent;
import ai.elimu.util.DiscordHelper;
import ai.elimu.web.context.EnvironmentContextLoaderListener;
import java.util.Calendar;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
import ai.elimu.dao.WordDao;
import ai.elimu.model.content.Word;
import ai.elimu.model.contributor.Contributor;
import ai.elimu.model.contributor.LetterSoundContributionEvent;
import ai.elimu.util.DiscordHelper;
import java.util.Calendar;
import javax.servlet.http.HttpServletRequest;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
import ai.elimu.model.contributor.Contributor;
import ai.elimu.model.contributor.LetterSoundContributionEvent;
import org.apache.logging.log4j.Logger;
import ai.elimu.model.contributor.LetterSoundContributionEvent;
import ai.elimu.model.contributor.LetterSoundPeerReviewEvent;
import ai.elimu.model.enums.PeerReviewStatus;
import ai.elimu.util.DiscordHelper;
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/db/migration/2004010.sql
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# 2.4.10

# "LetterSoundCorrespondencePeerReviewEvent" → "LetterSoundPeerReviewEvent"
DROP TABLE `LetterSoundPeerReviewEvent`;
DROP TABLE IF EXISTS `LetterSoundPeerReviewEvent`;
ALTER TABLE `LetterSoundCorrespondencePeerReviewEvent` RENAME `LetterSoundPeerReviewEvent`;

0 comments on commit a944227

Please sign in to comment.