Fix jwt-token

This commit is contained in:
2025-09-17 18:30:35 +02:00
parent 98444a26cc
commit b96a06f48c

View File

@@ -7,14 +7,10 @@
module.exports = { module.exports = {
up: async (queryInterface, Sequelize) => { up: async (queryInterface, Sequelize) => {
try { // Check if the column already exists
// Check if tenants table exists first const tableDescription = await queryInterface.describeTable('tenants');
const tables = await queryInterface.showAllTables();
if (!tables.includes('tenants')) {
console.log('⚠️ Tenants table does not exist yet, skipping allow_registration migration...');
return;
}
if (!tableDescription.allow_registration) {
await queryInterface.addColumn('tenants', 'allow_registration', { await queryInterface.addColumn('tenants', 'allow_registration', {
type: Sequelize.BOOLEAN, type: Sequelize.BOOLEAN,
defaultValue: false, // Default to false for security defaultValue: false, // Default to false for security
@@ -29,13 +25,10 @@ module.exports = {
console.log('✅ Added allow_registration field to tenants table'); console.log('✅ Added allow_registration field to tenants table');
console.log('⚠️ Registration is disabled by default for all tenants for security'); console.log('⚠️ Registration is disabled by default for all tenants for security');
console.log('💡 To enable registration for a tenant, update the allow_registration field to true'); console.log('💡 To enable registration for a tenant, update the allow_registration field to true');
} catch (error) { } else {
console.log('⚠️ Migration skipped - tables may not exist yet:', error.message); console.log('⚠️ Column allow_registration already exists, skipping...');
// Don't throw error, just skip this migration if tables don't exist
} }
}, }, down: async (queryInterface, Sequelize) => {
down: async (queryInterface, Sequelize) => {
await queryInterface.removeColumn('tenants', 'allow_registration'); await queryInterface.removeColumn('tenants', 'allow_registration');
console.log('✅ Removed allow_registration field from tenants table'); console.log('✅ Removed allow_registration field from tenants table');
} }