Skip to content

Commit de8dade

Browse files
authored
Dev (#220)
* test commit for downgrade of postgres * feat: llm_list for selection * added llm tables * added LLM user email tracking * modified LLM chat token limit permission * modified software competition code management * feat: make chat system compatible * feat: added new chat record system * added software contest deadline checks
1 parent 34ff1b7 commit de8dade

3 files changed

Lines changed: 5 additions & 0 deletions

File tree

metadata/tables.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1199,6 +1199,9 @@
11991199
contest_managers:
12001200
user_uuid:
12011201
_eq: X-Hasura-User-Id
1202+
- table:
1203+
name: contest_soft_code_deadline
1204+
schema: public
12021205
- table:
12031206
name: contest_team
12041207
schema: public
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
DROP TABLE "public"."contest_soft_code_deadline";
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
CREATE TABLE "public"."contest_soft_code_deadline" ("contest_id" uuid NOT NULL, "deadline" timestamptz NOT NULL, PRIMARY KEY ("contest_id") , FOREIGN KEY ("contest_id") REFERENCES "public"."contest"("id") ON UPDATE cascade ON DELETE cascade, UNIQUE ("contest_id"));

0 commit comments

Comments
 (0)