mirror of
https://github.com/documenso/documenso.git
synced 2025-11-18 18:51:37 +10:00
10 lines
322 B
SQL
10 lines
322 B
SQL
/*
|
|
Warnings:
|
|
|
|
- Added the required column `updatedAt` to the `Template` table without a default value. This is not possible if the table is not empty.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "Template" ADD COLUMN "createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
ADD COLUMN "updatedAt" TIMESTAMP(3) NOT NULL;
|