fix(app-config): add missing createdAt updatedAt fields in schema

This commit is contained in:
Ali BARIN
2024-08-28 10:32:06 +02:00
parent 706fb8d82f
commit 87b26b6342
@@ -15,6 +15,8 @@ class AppConfig extends Base {
allowCustomConnection: { type: 'boolean', default: false },
shared: { type: 'boolean', default: false },
disabled: { type: 'boolean', default: false },
createdAt: { type: 'string' },
updatedAt: { type: 'string' },
},
};