Added Worship page rendering

This commit is contained in:
Torsten Schulz
2024-06-17 13:36:15 +02:00
parent 4f1390b794
commit 48a54ecdbb
17 changed files with 637 additions and 563 deletions

View File

@@ -0,0 +1,16 @@
'use strict';
/** @type {import('sequelize-cli').Migration} */
module.exports = {
up: async (queryInterface, Sequelize) => {
await queryInterface.addColumn('worships', 'day_name', {
type: Sequelize.STRING,
allowNull: false,
default: ''
});
},
down: async (queryInterface, Sequelize) => {
await queryInterface.removeColumn('worships', 'day_name');
}
};