Skip to content

Commit ddfd014

Browse files
committed
enhancement: updated masters contracts
1 parent 2dbe790 commit ddfd014

File tree

70 files changed

+63
-30
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+63
-30
lines changed

admission-api/db.env

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
POSTGRES_PASSWORD=uBib8ajkASliAljgb

admission-api/docker-compose.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
services:
2+
db:
3+
image: postgres:16
4+
restart: always
5+
ports:
6+
- "5430:5432"
7+
env_file:
8+
- ".env"
9+
volumes:
10+
- "db_data:/var/lib/postgresql/data"
11+
12+
volumes:
13+
db_data:
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
-- AlterEnum
2+
ALTER TYPE "EducationProgram" ADD VALUE 'IST';
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
-- AlterEnum
2+
ALTER TYPE "EducationProgram" ADD VALUE 'QSE';

admission-api/prisma/schema.prisma

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ enum EducationProgram {
3131
CSN
3232
IIS
3333
IMST
34+
IST
35+
QSE
3436
}
3537

3638
enum Specialty {
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)