mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 00:03:33 +10:00
5 lines
161 B
SQL
5 lines
161 B
SQL
-- AlterTable
|
|
ALTER TABLE "Document" ADD COLUMN "completedAt" TIMESTAMP(3);
|
|
|
|
UPDATE "Document" SET "completedAt" = "updatedAt" WHERE "status" = 'COMPLETED';
|