mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 00:03:33 +10:00
## Description Adds the external ID column to documents and templates with an option to configure it in the API or UI. External ID's can be used to link a document or template to an external system and identify them via webhooks, etc.
6 lines
143 B
SQL
6 lines
143 B
SQL
-- AlterTable
|
|
ALTER TABLE "Document" ADD COLUMN "externalId" TEXT;
|
|
|
|
-- AlterTable
|
|
ALTER TABLE "Template" ADD COLUMN "externalId" TEXT;
|