We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1d4f21 commit 056d936Copy full SHA for 056d936
back/loaders/db.ts
@@ -56,6 +56,9 @@ export default async () => {
56
try {
57
await sequelize.query('alter table Crontabs add column task_after TEXT');
58
} catch (error) {}
59
+ try {
60
+ await sequelize.query('alter table Envs add column isPinned NUMBER');
61
+ } catch (error) {}
62
63
Logger.info('✌️ DB loaded');
64
} catch (error) {
0 commit comments