Some checks failed
Deploy to production / deploy (push) Has been cancelled
- Modified the deployment workflow to include new migration paths for the backend, ensuring that migrations are correctly referenced in the deployment process. - Updated the `db:migrate` script in package.json to point to the `migrations-active` directory, enhancing clarity and organization of migration files. - Adjusted the deployment conditions to account for changes in migration file locations, improving the accuracy of change detection during deployments. - Removed obsolete migration files to streamline the migration process and prevent confusion.
34 lines
1.2 KiB
JavaScript
34 lines
1.2 KiB
JavaScript
/* eslint-disable */
|
|
'use strict';
|
|
|
|
module.exports = {
|
|
async up(queryInterface) {
|
|
// Lernziele für Lektionen
|
|
await queryInterface.sequelize.query(`
|
|
ALTER TABLE community.vocab_course_lesson
|
|
ADD COLUMN IF NOT EXISTS target_minutes INTEGER,
|
|
ADD COLUMN IF NOT EXISTS target_score_percent INTEGER DEFAULT 80,
|
|
ADD COLUMN IF NOT EXISTS requires_review BOOLEAN DEFAULT false;
|
|
`);
|
|
|
|
// Kommentare hinzufügen
|
|
await queryInterface.sequelize.query(`
|
|
COMMENT ON COLUMN community.vocab_course_lesson.target_minutes IS
|
|
'Zielzeit in Minuten für diese Lektion';
|
|
COMMENT ON COLUMN community.vocab_course_lesson.target_score_percent IS
|
|
'Mindestpunktzahl in Prozent zum Abschluss (z.B. 80)';
|
|
COMMENT ON COLUMN community.vocab_course_lesson.requires_review IS
|
|
'Muss diese Lektion wiederholt werden, wenn Ziel nicht erreicht?';
|
|
`);
|
|
},
|
|
|
|
async down(queryInterface) {
|
|
await queryInterface.sequelize.query(`
|
|
ALTER TABLE community.vocab_course_lesson
|
|
DROP COLUMN IF EXISTS target_minutes,
|
|
DROP COLUMN IF EXISTS target_score_percent,
|
|
DROP COLUMN IF EXISTS requires_review;
|
|
`);
|
|
}
|
|
};
|