fixed psychoJS serving

This commit is contained in:
Shaheed Azaad
2025-07-14 00:24:44 +02:00
parent 9fba3becb8
commit cde21e9286
107 changed files with 3974 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
DROP TYPE IF EXISTS "public"."experiment_type";
CREATE TYPE "public"."experiment_type" AS ENUM('jsPsych', 'PsychoJS');
ALTER TABLE "experiment" ADD COLUMN "multiplayer" boolean DEFAULT false NOT NULL;
ALTER TABLE "experiment" ADD COLUMN "type" "experiment_type" NOT NULL;