Merge branch 'develop' into copilot/enable-multi-user-management

This commit is contained in:
whyour
2025-11-09 19:50:16 +08:00
committed by GitHub
12 changed files with 333 additions and 62 deletions
+8
View File
@@ -56,6 +56,14 @@ export default async () => {
try {
await sequelize.query('alter table Crontabs add column task_after TEXT');
} catch (error) {}
try {
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');
} catch (error) {