-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #747 from PradyumnaNagendra/release-2.5.0
Issue #000 fix: Merging cqls from release-lms-2.5.0 to release-2.5.0
- Loading branch information
Showing
2 changed files
with
3 additions
and
2 deletions.
There are no files selected for viewing
4 changes: 2 additions & 2 deletions
4
...gration/cassandra-migration/src/main/resources/db/migration/cassandra/V1.86_cassandra.cql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
CREATE TRIGGER course_batch_trigger ON sunbird_courses.course_batch USING 'org.sunbird.cassandra.triggers.TransactionEventTrigger'; | ||
CREATE TRIGGER batch_enrollment_trigger ON sunbird_courses.user_courses USING 'org.sunbird.cassandra.triggers.TransactionEventTrigger'; | ||
CREATE TRIGGER IF NOT EXISTS course_batch_trigger ON sunbird_courses.course_batch USING 'org.sunbird.cassandra.triggers.TransactionEventTrigger'; | ||
CREATE TRIGGER IF NOT EXISTS batch_enrollment_trigger ON sunbird_courses.user_courses USING 'org.sunbird.cassandra.triggers.TransactionEventTrigger'; |
1 change: 1 addition & 0 deletions
1
...gration/cassandra-migration/src/main/resources/db/migration/cassandra/V1.87_cassandra.cql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
CREATE TABLE IF NOT EXISTS sunbird_courses.certificate_templates(courseid text,batchid text,name text,template text,filters text,addedby text,lastupdatedon timestamp,PRIMARY KEY (courseid,name) ); | ||
DROP TABLE IF EXISTS sunbird_courses.certificate_templates; |