feat: Add folderId column to the flow model

This commit is contained in:
Faruk AYDIN
2025-01-31 18:22:11 +01:00
parent a9ba8bae83
commit 172eab410b
3 changed files with 20 additions and 0 deletions

View File

@@ -28,6 +28,7 @@ class Flow extends Base {
id: { type: 'string', format: 'uuid' },
name: { type: 'string', minLength: 1 },
userId: { type: 'string', format: 'uuid' },
folderId: { type: ['string', 'null'], format: 'uuid' },
remoteWebhookId: { type: 'string' },
active: { type: 'boolean' },
publishedAt: { type: 'string' },