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

This commit is contained in:
Ali BARIN
2024-08-27 12:43:48 +00:00
parent 706fb8d82f
commit 87b26b6342

View File

@@ -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' },
},
};