Skip to content

Commit 33ed30d

Browse files
committed
pm
1 parent fe0167d commit 33ed30d

File tree

3 files changed

+1
-26
lines changed

3 files changed

+1
-26
lines changed

prisma/client.ts

-15
This file was deleted.

prisma/migrations/20240806153434_typo/migration.sql

-10
This file was deleted.

prisma/migrations/20240806061502_create_issue/migration.sql renamed to prisma/migrations/20240808084841_create_issue/migration.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ CREATE TYPE "Status" AS ENUM ('OPEN', 'IN_PROGRESS', 'CLOSED');
55
CREATE TABLE "Issue" (
66
"id" SERIAL NOT NULL,
77
"title" VARCHAR(255) NOT NULL,
8-
"discription" TEXT NOT NULL,
8+
"description" TEXT NOT NULL,
99
"status" "Status" NOT NULL DEFAULT 'OPEN',
1010
"createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
1111
"updateAt" TIMESTAMP(3) NOT NULL,

0 commit comments

Comments
 (0)