From 70290c3e5ff8de1509fdcac706a7b20e6893be47 Mon Sep 17 00:00:00 2001 From: Jonas Natten Date: Fri, 20 Feb 2026 10:07:23 +0100 Subject: [PATCH] chore: delete learningsteps table --- .../db/migration/V61__DropLearningStepsTable.sql | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 learningpath-api/src/main/resources/no/ndla/learningpathapi/db/migration/V61__DropLearningStepsTable.sql diff --git a/learningpath-api/src/main/resources/no/ndla/learningpathapi/db/migration/V61__DropLearningStepsTable.sql b/learningpath-api/src/main/resources/no/ndla/learningpathapi/db/migration/V61__DropLearningStepsTable.sql new file mode 100644 index 0000000000..e8eddc27ea --- /dev/null +++ b/learningpath-api/src/main/resources/no/ndla/learningpathapi/db/migration/V61__DropLearningStepsTable.sql @@ -0,0 +1,3 @@ +ALTER SEQUENCE learningsteps_id_seq OWNED BY NONE; + +DROP TABLE IF EXISTS learningsteps;