# public.folder ## Columns | Name | Type | Default | Nullable | Children | Parents | Comment | | ---- | ---- | ------- | -------- | -------- | ------- | ------- | | id | varchar(36) | | false | [public.workflow_entity](public.workflow_entity.md) [public.folder](public.folder.md) [public.folder_tag](public.folder_tag.md) | | | | name | varchar(128) | | false | | | | | parentFolderId | varchar(36) | | true | | [public.folder](public.folder.md) | | | projectId | varchar(36) | | false | | [public.project](public.project.md) | | | createdAt | timestamp(3) with time zone | CURRENT_TIMESTAMP(3) | false | | | | | updatedAt | timestamp(3) with time zone | CURRENT_TIMESTAMP(3) | false | | | | ## Constraints | Name | Type | Definition | | ---- | ---- | ---------- | | folder_createdAt_not_null | n | NOT NULL "createdAt" | | folder_id_not_null | n | NOT NULL id | | folder_name_not_null | n | NOT NULL name | | folder_projectId_not_null | n | NOT NULL "projectId" | | folder_updatedAt_not_null | n | NOT NULL "updatedAt" | | FK_a8260b0b36939c6247f385b8221 | FOREIGN KEY | FOREIGN KEY ("projectId") REFERENCES project(id) ON DELETE CASCADE | | FK_804ea52f6729e3940498bd54d78 | FOREIGN KEY | FOREIGN KEY ("parentFolderId") REFERENCES folder(id) ON DELETE CASCADE | | PK_6278a41a706740c94c02e288df8 | PRIMARY KEY | PRIMARY KEY (id) | ## Indexes | Name | Definition | | ---- | ---------- | | PK_6278a41a706740c94c02e288df8 | CREATE UNIQUE INDEX "PK_6278a41a706740c94c02e288df8" ON public.folder USING btree (id) | | IDX_14f68deffaf858465715995508 | CREATE UNIQUE INDEX "IDX_14f68deffaf858465715995508" ON public.folder USING btree ("projectId", id) | ## Relations ```mermaid erDiagram "public.workflow_entity" }o--o| "public.folder" : "FOREIGN KEY (#quot;parentFolderId#quot;) REFERENCES folder(id) ON DELETE CASCADE" "public.folder" }o--o| "public.folder" : "FOREIGN KEY (#quot;parentFolderId#quot;) REFERENCES folder(id) ON DELETE CASCADE" "public.folder_tag" }o--|| "public.folder" : "FOREIGN KEY (#quot;folderId#quot;) REFERENCES folder(id) ON DELETE CASCADE" "public.folder" }o--|| "public.project" : "FOREIGN KEY (#quot;projectId#quot;) REFERENCES project(id) ON DELETE CASCADE" "public.folder" { varchar_36_ id varchar_128_ name varchar_36_ parentFolderId FK varchar_36_ projectId FK timestamp_3__with_time_zone createdAt timestamp_3__with_time_zone updatedAt } "public.workflow_entity" { varchar_128_ name boolean active json nodes json connections timestamp_3__with_time_zone createdAt timestamp_3__with_time_zone updatedAt json settings json staticData json pinData character_36_ versionId integer triggerCount varchar_36_ id json meta varchar_36_ parentFolderId FK boolean isArchived integer versionCounter text description varchar_36_ activeVersionId FK json nodeGroups varchar sourceWorkflowId } "public.folder_tag" { varchar_36_ folderId FK varchar_36_ tagId FK } "public.project" { varchar_36_ id varchar_255_ name varchar_36_ type timestamp_3__with_time_zone createdAt timestamp_3__with_time_zone updatedAt json icon varchar_512_ description uuid creatorId FK json customTelemetryTags } ``` --- > Generated by [tbls](https://github.com/k1LoW/tbls)