Fix jwt-token

This commit is contained in:
2025-09-17 06:41:05 +02:00
parent faa2a15b5a
commit a0e0343989
4 changed files with 49 additions and 6 deletions

View File

@@ -7,8 +7,16 @@
module.exports = {
up: async (queryInterface, Sequelize) => {
// Check if the columns already exist
const tableDescription = await queryInterface.describeTable('tenants');
try {
// Check if tenants table exists first
const tables = await queryInterface.showAllTables();
if (!tables.includes('tenants')) {
console.log('⚠️ Tenants table does not exist yet, skipping auth session config migration...');
return;
}
// Check if the columns already exist
const tableDescription = await queryInterface.describeTable('tenants');
// Add session configuration fields
if (!tableDescription.session_timeout) {
@@ -78,6 +86,10 @@ module.exports = {
} catch (error) {
console.log('⚠️ Auth provider enum already includes ad or error occurred:', error.message);
}
} catch (error) {
console.log('⚠️ Migration skipped - tables may not exist yet:', error.message);
// Don't throw error, just skip this migration if tables don't exist
}
},
down: async (queryInterface, Sequelize) => {