9854ca2f59
Mirror to GitHub / mirror (push) Successful in 27s
Test and Lint / backend-test (push) Successful in 1m21s
continuous-integration/drone/push Build is passing
Test and Lint / frontend-test (push) Successful in 2m4s
Version and Release / version-bump (push) Failing after 31s
Version and Release / trigger-drone (push) Has been skipped
- Created core/ directory for essential migrations that always run - Created legacy/ directory for migrations only needed when upgrading - New deployments will only run core migrations for a clean database - Existing deployments will run all migrations in proper sequence - Fixed duplicate migration numbers (014 and 027) - Updated migration runners to handle new directory structure - Added README explaining the migration organization This change optimizes deployment for new users who will get a clean schema without running unnecessary upgrade migrations.
68 lines
2.4 KiB
JavaScript
68 lines
2.4 KiB
JavaScript
exports.up = async function(knex) {
|
|
console.log('Fixing JSON columns in database...');
|
|
|
|
// Fix email_templates variables column
|
|
const templates = await knex('email_templates').select('id', 'template_key', 'variables');
|
|
|
|
for (const template of templates) {
|
|
if (template.variables && typeof template.variables === 'string') {
|
|
try {
|
|
// Check if it's already valid JSON
|
|
JSON.parse(template.variables);
|
|
} catch (e) {
|
|
console.log(`Fixing invalid JSON in email template ${template.template_key}`);
|
|
// Attempt to fix common issues
|
|
let fixed = template.variables;
|
|
|
|
// If it looks like an array but isn't valid JSON, try to fix it
|
|
if (fixed.startsWith('[') && fixed.endsWith(']')) {
|
|
// Extract the content and properly format it
|
|
const content = fixed.slice(1, -1);
|
|
const items = content.split(',').map(item => item.trim().replace(/['"]/g, ''));
|
|
fixed = JSON.stringify(items);
|
|
} else {
|
|
// Default to empty array if we can't fix it
|
|
fixed = JSON.stringify([]);
|
|
}
|
|
|
|
await knex('email_templates')
|
|
.where('id', template.id)
|
|
.update({ variables: fixed });
|
|
}
|
|
} else if (!template.variables) {
|
|
// Set default empty array for null values
|
|
await knex('email_templates')
|
|
.where('id', template.id)
|
|
.update({ variables: JSON.stringify([]) });
|
|
}
|
|
}
|
|
|
|
// Fix activity_logs metadata column
|
|
const activities = await knex('activity_logs').select('id', 'metadata');
|
|
|
|
for (const activity of activities) {
|
|
if (activity.metadata && typeof activity.metadata === 'string') {
|
|
try {
|
|
// Check if it's already valid JSON
|
|
JSON.parse(activity.metadata);
|
|
} catch (e) {
|
|
console.log(`Fixing invalid JSON in activity log ${activity.id}`);
|
|
// Default to empty object if we can't parse it
|
|
await knex('activity_logs')
|
|
.where('id', activity.id)
|
|
.update({ metadata: JSON.stringify({}) });
|
|
}
|
|
} else if (!activity.metadata) {
|
|
// Set default empty object for null values
|
|
await knex('activity_logs')
|
|
.where('id', activity.id)
|
|
.update({ metadata: JSON.stringify({}) });
|
|
}
|
|
}
|
|
|
|
console.log('JSON columns fixed successfully');
|
|
};
|
|
|
|
exports.down = async function(knex) {
|
|
// No rollback needed - data fixes only
|
|
}; |