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

This commit is contained in:
whyour
2025-11-10 23:53:10 +08:00
committed by GitHub
9 changed files with 78 additions and 98 deletions
+1 -1
View File
@@ -62,7 +62,7 @@ export default async () => {
);
} catch (error) {}
try {
await sequelize.query('alter table Envs add column is_pinned NUMBER');
await sequelize.query('alter table Envs add column isPinned NUMBER');
} catch (error) {}
Logger.info('✌️ DB loaded');
+2 -2
View File
@@ -58,6 +58,6 @@ export default async (src: string = 'deps') => {
});
watcher
.on('add', (path) => linkToNodeModule(src))
.on('change', (path) => linkToNodeModule(src));
.on('add', () => linkToNodeModule(src))
.on('change', () => linkToNodeModule(src));
};