Merge branch 'develop' into copilot/add-scenario-mode-support

This commit is contained in:
whyour
2025-11-09 19:45:01 +08:00
committed by GitHub
12 changed files with 329 additions and 61 deletions
+6 -1
View File
@@ -61,7 +61,12 @@ export default async () => {
await sequelize.query('alter table Crontabs add column task_after TEXT');
} catch (error) {}
try {
await sequelize.query('alter table Scenarios add column workflowGraph JSON');
await sequelize.query(
'alter table Crontabs add column log_name VARCHAR(255)',
);
} catch (error) {}
try {
await sequelize.query('alter table Envs add column is_pinned NUMBER');
} catch (error) {}
Logger.info('✌️ DB loaded');