-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c4c29e7
commit 4b30c3f
Showing
2 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
14 changes: 14 additions & 0 deletions
14
services/app-api/prisma/migrations/20240517195439_create_state_program_table/migration.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
BEGIN; | ||
-- CreateTable | ||
CREATE TABLE "StateProgram" ( | ||
"id" TEXT NOT NULL, | ||
"createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP, | ||
"updatedAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP, | ||
"fullName" TEXT NOT NULL, | ||
"name" TEXT NOT NULL, | ||
"stateCode" TEXT NOT NULL, | ||
"isRateProgram" BOOLEAN NOT NULL, | ||
|
||
CONSTRAINT "StateProgram_pkey" PRIMARY KEY ("id") | ||
); | ||
COMMIT; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters