Files
Curio/drizzle/migrations/meta/0000_snapshot.json
T
arnaudne 4e38b5a791 feat: initial commit — Curio mastery tutor
Full Next.js App Router application with:
- AI-graded lesson checkpoints (BKT/Elo mastery tracking)
- Auth.js v5: credentials, Google, GitHub, generic OIDC
- Anonymous-session-first with migrate-on-signin
- Admin panel: users, blueprints, reports, site settings
- Password reset + email verification (nodemailer/SMTP)
- Site config: require_auth + signups_enabled flags
- server-only guards on all DB/generation/verification modules
- PostgreSQL 16 + pgvector, Redis cache, Drizzle ORM
- 271 unit tests (Vitest), golden-eval harness, Playwright e2e stubs

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-21 22:25:43 +02:00

951 lines
23 KiB
JSON

{
"id": "99287306-1d2d-4763-a7fa-4767e0247728",
"prevId": "00000000-0000-0000-0000-000000000000",
"version": "7",
"dialect": "postgresql",
"tables": {
"public.blueprint": {
"name": "blueprint",
"schema": "",
"columns": {
"id": {
"name": "id",
"type": "uuid",
"primaryKey": true,
"notNull": true,
"default": "gen_random_uuid()"
},
"intent_key": {
"name": "intent_key",
"type": "text",
"primaryKey": false,
"notNull": true
},
"embedding": {
"name": "embedding",
"type": "vector(1536)",
"primaryKey": false,
"notNull": false
},
"title": {
"name": "title",
"type": "text",
"primaryKey": false,
"notNull": true
},
"model_version": {
"name": "model_version",
"type": "text",
"primaryKey": false,
"notNull": true
},
"content_version": {
"name": "content_version",
"type": "integer",
"primaryKey": false,
"notNull": true,
"default": 1
},
"status": {
"name": "status",
"type": "blueprint_status",
"typeSchema": "public",
"primaryKey": false,
"notNull": true,
"default": "'draft'"
},
"created_at": {
"name": "created_at",
"type": "timestamp",
"primaryKey": false,
"notNull": true,
"default": "now()"
}
},
"indexes": {},
"foreignKeys": {},
"compositePrimaryKeys": {},
"uniqueConstraints": {
"blueprint_intent_key_unique": {
"name": "blueprint_intent_key_unique",
"nullsNotDistinct": false,
"columns": [
"intent_key"
]
}
},
"policies": {},
"checkConstraints": {},
"isRLSEnabled": false
},
"public.checkpoint": {
"name": "checkpoint",
"schema": "",
"columns": {
"id": {
"name": "id",
"type": "uuid",
"primaryKey": true,
"notNull": true,
"default": "gen_random_uuid()"
},
"segment_id": {
"name": "segment_id",
"type": "uuid",
"primaryKey": false,
"notNull": true
},
"prompt": {
"name": "prompt",
"type": "text",
"primaryKey": false,
"notNull": true
},
"kind": {
"name": "kind",
"type": "checkpoint_kind",
"typeSchema": "public",
"primaryKey": false,
"notNull": true
},
"reference_answer": {
"name": "reference_answer",
"type": "text",
"primaryKey": false,
"notNull": true
},
"rubric_json": {
"name": "rubric_json",
"type": "jsonb",
"primaryKey": false,
"notNull": true
},
"verify_status": {
"name": "verify_status",
"type": "verify_status",
"typeSchema": "public",
"primaryKey": false,
"notNull": true,
"default": "'pending'"
}
},
"indexes": {},
"foreignKeys": {
"checkpoint_segment_id_segment_id_fk": {
"name": "checkpoint_segment_id_segment_id_fk",
"tableFrom": "checkpoint",
"tableTo": "segment",
"columnsFrom": [
"segment_id"
],
"columnsTo": [
"id"
],
"onDelete": "no action",
"onUpdate": "no action"
}
},
"compositePrimaryKeys": {},
"uniqueConstraints": {},
"policies": {},
"checkConstraints": {},
"isRLSEnabled": false
},
"public.concept": {
"name": "concept",
"schema": "",
"columns": {
"id": {
"name": "id",
"type": "uuid",
"primaryKey": true,
"notNull": true,
"default": "gen_random_uuid()"
},
"blueprint_id": {
"name": "blueprint_id",
"type": "uuid",
"primaryKey": false,
"notNull": true
},
"ord": {
"name": "ord",
"type": "integer",
"primaryKey": false,
"notNull": true
},
"name": {
"name": "name",
"type": "text",
"primaryKey": false,
"notNull": true
},
"retrieval_ctx_ref": {
"name": "retrieval_ctx_ref",
"type": "text",
"primaryKey": false,
"notNull": false
}
},
"indexes": {},
"foreignKeys": {
"concept_blueprint_id_blueprint_id_fk": {
"name": "concept_blueprint_id_blueprint_id_fk",
"tableFrom": "concept",
"tableTo": "blueprint",
"columnsFrom": [
"blueprint_id"
],
"columnsTo": [
"id"
],
"onDelete": "no action",
"onUpdate": "no action"
}
},
"compositePrimaryKeys": {},
"uniqueConstraints": {},
"policies": {},
"checkConstraints": {},
"isRLSEnabled": false
},
"public.grade": {
"name": "grade",
"schema": "",
"columns": {
"id": {
"name": "id",
"type": "uuid",
"primaryKey": true,
"notNull": true,
"default": "gen_random_uuid()"
},
"response_id": {
"name": "response_id",
"type": "uuid",
"primaryKey": false,
"notNull": true
},
"verdict": {
"name": "verdict",
"type": "grade_verdict",
"typeSchema": "public",
"primaryKey": false,
"notNull": true
},
"misconception_tag": {
"name": "misconception_tag",
"type": "text",
"primaryKey": false,
"notNull": false
},
"confidence": {
"name": "confidence",
"type": "real",
"primaryKey": false,
"notNull": true
},
"payload_json": {
"name": "payload_json",
"type": "jsonb",
"primaryKey": false,
"notNull": true
}
},
"indexes": {},
"foreignKeys": {
"grade_response_id_response_id_fk": {
"name": "grade_response_id_response_id_fk",
"tableFrom": "grade",
"tableTo": "response",
"columnsFrom": [
"response_id"
],
"columnsTo": [
"id"
],
"onDelete": "no action",
"onUpdate": "no action"
}
},
"compositePrimaryKeys": {},
"uniqueConstraints": {},
"policies": {},
"checkConstraints": {},
"isRLSEnabled": false
},
"public.job": {
"name": "job",
"schema": "",
"columns": {
"id": {
"name": "id",
"type": "uuid",
"primaryKey": true,
"notNull": true,
"default": "gen_random_uuid()"
},
"type": {
"name": "type",
"type": "text",
"primaryKey": false,
"notNull": true
},
"idempotency_key": {
"name": "idempotency_key",
"type": "text",
"primaryKey": false,
"notNull": true
},
"status": {
"name": "status",
"type": "job_status",
"typeSchema": "public",
"primaryKey": false,
"notNull": true,
"default": "'pending'"
},
"payload_json": {
"name": "payload_json",
"type": "jsonb",
"primaryKey": false,
"notNull": true
},
"attempts": {
"name": "attempts",
"type": "integer",
"primaryKey": false,
"notNull": true,
"default": 0
},
"created_at": {
"name": "created_at",
"type": "timestamp",
"primaryKey": false,
"notNull": true,
"default": "now()"
}
},
"indexes": {},
"foreignKeys": {},
"compositePrimaryKeys": {},
"uniqueConstraints": {
"job_idempotency_key_unique": {
"name": "job_idempotency_key_unique",
"nullsNotDistinct": false,
"columns": [
"idempotency_key"
]
}
},
"policies": {},
"checkConstraints": {},
"isRLSEnabled": false
},
"public.journey_instance": {
"name": "journey_instance",
"schema": "",
"columns": {
"id": {
"name": "id",
"type": "uuid",
"primaryKey": true,
"notNull": true,
"default": "gen_random_uuid()"
},
"user_id": {
"name": "user_id",
"type": "uuid",
"primaryKey": false,
"notNull": true
},
"blueprint_id": {
"name": "blueprint_id",
"type": "uuid",
"primaryKey": false,
"notNull": true
},
"position": {
"name": "position",
"type": "integer",
"primaryKey": false,
"notNull": true,
"default": 0
}
},
"indexes": {},
"foreignKeys": {
"journey_instance_user_id_user_id_fk": {
"name": "journey_instance_user_id_user_id_fk",
"tableFrom": "journey_instance",
"tableTo": "user",
"columnsFrom": [
"user_id"
],
"columnsTo": [
"id"
],
"onDelete": "no action",
"onUpdate": "no action"
},
"journey_instance_blueprint_id_blueprint_id_fk": {
"name": "journey_instance_blueprint_id_blueprint_id_fk",
"tableFrom": "journey_instance",
"tableTo": "blueprint",
"columnsFrom": [
"blueprint_id"
],
"columnsTo": [
"id"
],
"onDelete": "no action",
"onUpdate": "no action"
}
},
"compositePrimaryKeys": {},
"uniqueConstraints": {},
"policies": {},
"checkConstraints": {},
"isRLSEnabled": false
},
"public.lesson": {
"name": "lesson",
"schema": "",
"columns": {
"id": {
"name": "id",
"type": "uuid",
"primaryKey": true,
"notNull": true,
"default": "gen_random_uuid()"
},
"blueprint_id": {
"name": "blueprint_id",
"type": "uuid",
"primaryKey": false,
"notNull": true
},
"ord": {
"name": "ord",
"type": "integer",
"primaryKey": false,
"notNull": true
},
"est_minutes": {
"name": "est_minutes",
"type": "integer",
"primaryKey": false,
"notNull": true,
"default": 10
}
},
"indexes": {},
"foreignKeys": {
"lesson_blueprint_id_blueprint_id_fk": {
"name": "lesson_blueprint_id_blueprint_id_fk",
"tableFrom": "lesson",
"tableTo": "blueprint",
"columnsFrom": [
"blueprint_id"
],
"columnsTo": [
"id"
],
"onDelete": "no action",
"onUpdate": "no action"
}
},
"compositePrimaryKeys": {},
"uniqueConstraints": {},
"policies": {},
"checkConstraints": {},
"isRLSEnabled": false
},
"public.mastery": {
"name": "mastery",
"schema": "",
"columns": {
"user_id": {
"name": "user_id",
"type": "uuid",
"primaryKey": false,
"notNull": true
},
"concept_id": {
"name": "concept_id",
"type": "uuid",
"primaryKey": false,
"notNull": true
},
"score": {
"name": "score",
"type": "real",
"primaryKey": false,
"notNull": true,
"default": 0.5
},
"last_seen": {
"name": "last_seen",
"type": "timestamp",
"primaryKey": false,
"notNull": true,
"default": "now()"
},
"next_review": {
"name": "next_review",
"type": "timestamp",
"primaryKey": false,
"notNull": true,
"default": "now()"
}
},
"indexes": {},
"foreignKeys": {
"mastery_user_id_user_id_fk": {
"name": "mastery_user_id_user_id_fk",
"tableFrom": "mastery",
"tableTo": "user",
"columnsFrom": [
"user_id"
],
"columnsTo": [
"id"
],
"onDelete": "no action",
"onUpdate": "no action"
},
"mastery_concept_id_concept_id_fk": {
"name": "mastery_concept_id_concept_id_fk",
"tableFrom": "mastery",
"tableTo": "concept",
"columnsFrom": [
"concept_id"
],
"columnsTo": [
"id"
],
"onDelete": "no action",
"onUpdate": "no action"
}
},
"compositePrimaryKeys": {
"mastery_user_id_concept_id_pk": {
"name": "mastery_user_id_concept_id_pk",
"columns": [
"user_id",
"concept_id"
]
}
},
"uniqueConstraints": {},
"policies": {},
"checkConstraints": {},
"isRLSEnabled": false
},
"public.misconception": {
"name": "misconception",
"schema": "",
"columns": {
"id": {
"name": "id",
"type": "uuid",
"primaryKey": true,
"notNull": true,
"default": "gen_random_uuid()"
},
"concept_id": {
"name": "concept_id",
"type": "uuid",
"primaryKey": false,
"notNull": true
},
"tag": {
"name": "tag",
"type": "text",
"primaryKey": false,
"notNull": true
},
"signature": {
"name": "signature",
"type": "text",
"primaryKey": false,
"notNull": true
},
"verify_status": {
"name": "verify_status",
"type": "verify_status",
"typeSchema": "public",
"primaryKey": false,
"notNull": true,
"default": "'pending'"
}
},
"indexes": {},
"foreignKeys": {
"misconception_concept_id_concept_id_fk": {
"name": "misconception_concept_id_concept_id_fk",
"tableFrom": "misconception",
"tableTo": "concept",
"columnsFrom": [
"concept_id"
],
"columnsTo": [
"id"
],
"onDelete": "no action",
"onUpdate": "no action"
}
},
"compositePrimaryKeys": {},
"uniqueConstraints": {},
"policies": {},
"checkConstraints": {},
"isRLSEnabled": false
},
"public.response": {
"name": "response",
"schema": "",
"columns": {
"id": {
"name": "id",
"type": "uuid",
"primaryKey": true,
"notNull": true,
"default": "gen_random_uuid()"
},
"user_id": {
"name": "user_id",
"type": "uuid",
"primaryKey": false,
"notNull": true
},
"checkpoint_id": {
"name": "checkpoint_id",
"type": "uuid",
"primaryKey": false,
"notNull": true
},
"text": {
"name": "text",
"type": "text",
"primaryKey": false,
"notNull": true
},
"ts": {
"name": "ts",
"type": "timestamp",
"primaryKey": false,
"notNull": true,
"default": "now()"
}
},
"indexes": {},
"foreignKeys": {
"response_user_id_user_id_fk": {
"name": "response_user_id_user_id_fk",
"tableFrom": "response",
"tableTo": "user",
"columnsFrom": [
"user_id"
],
"columnsTo": [
"id"
],
"onDelete": "no action",
"onUpdate": "no action"
},
"response_checkpoint_id_checkpoint_id_fk": {
"name": "response_checkpoint_id_checkpoint_id_fk",
"tableFrom": "response",
"tableTo": "checkpoint",
"columnsFrom": [
"checkpoint_id"
],
"columnsTo": [
"id"
],
"onDelete": "no action",
"onUpdate": "no action"
}
},
"compositePrimaryKeys": {},
"uniqueConstraints": {},
"policies": {},
"checkConstraints": {},
"isRLSEnabled": false
},
"public.segment": {
"name": "segment",
"schema": "",
"columns": {
"id": {
"name": "id",
"type": "uuid",
"primaryKey": true,
"notNull": true,
"default": "gen_random_uuid()"
},
"lesson_id": {
"name": "lesson_id",
"type": "uuid",
"primaryKey": false,
"notNull": true
},
"ord": {
"name": "ord",
"type": "integer",
"primaryKey": false,
"notNull": true
},
"body_json": {
"name": "body_json",
"type": "jsonb",
"primaryKey": false,
"notNull": true
},
"source_chunk_ids": {
"name": "source_chunk_ids",
"type": "uuid[]",
"primaryKey": false,
"notNull": true,
"default": "'{}'"
},
"verify_status": {
"name": "verify_status",
"type": "verify_status",
"typeSchema": "public",
"primaryKey": false,
"notNull": true,
"default": "'pending'"
},
"content_version": {
"name": "content_version",
"type": "integer",
"primaryKey": false,
"notNull": true,
"default": 1
}
},
"indexes": {},
"foreignKeys": {
"segment_lesson_id_lesson_id_fk": {
"name": "segment_lesson_id_lesson_id_fk",
"tableFrom": "segment",
"tableTo": "lesson",
"columnsFrom": [
"lesson_id"
],
"columnsTo": [
"id"
],
"onDelete": "no action",
"onUpdate": "no action"
}
},
"compositePrimaryKeys": {},
"uniqueConstraints": {},
"policies": {},
"checkConstraints": {},
"isRLSEnabled": false
},
"public.source_chunk": {
"name": "source_chunk",
"schema": "",
"columns": {
"id": {
"name": "id",
"type": "uuid",
"primaryKey": true,
"notNull": true,
"default": "gen_random_uuid()"
},
"doc_ref": {
"name": "doc_ref",
"type": "text",
"primaryKey": false,
"notNull": true
},
"embedding": {
"name": "embedding",
"type": "vector(1536)",
"primaryKey": false,
"notNull": false
},
"text": {
"name": "text",
"type": "text",
"primaryKey": false,
"notNull": true
}
},
"indexes": {},
"foreignKeys": {},
"compositePrimaryKeys": {},
"uniqueConstraints": {},
"policies": {},
"checkConstraints": {},
"isRLSEnabled": false
},
"public.user": {
"name": "user",
"schema": "",
"columns": {
"id": {
"name": "id",
"type": "uuid",
"primaryKey": true,
"notNull": true,
"default": "gen_random_uuid()"
},
"created_at": {
"name": "created_at",
"type": "timestamp",
"primaryKey": false,
"notNull": true,
"default": "now()"
}
},
"indexes": {},
"foreignKeys": {},
"compositePrimaryKeys": {},
"uniqueConstraints": {},
"policies": {},
"checkConstraints": {},
"isRLSEnabled": false
},
"public.verify_report": {
"name": "verify_report",
"schema": "",
"columns": {
"id": {
"name": "id",
"type": "uuid",
"primaryKey": true,
"notNull": true,
"default": "gen_random_uuid()"
},
"target_id": {
"name": "target_id",
"type": "uuid",
"primaryKey": false,
"notNull": true
},
"target_type": {
"name": "target_type",
"type": "text",
"primaryKey": false,
"notNull": true
},
"verdict": {
"name": "verdict",
"type": "verify_verdict",
"typeSchema": "public",
"primaryKey": false,
"notNull": true
},
"confidence": {
"name": "confidence",
"type": "real",
"primaryKey": false,
"notNull": true
},
"payload_json": {
"name": "payload_json",
"type": "jsonb",
"primaryKey": false,
"notNull": true
},
"model_version": {
"name": "model_version",
"type": "text",
"primaryKey": false,
"notNull": true
},
"created_at": {
"name": "created_at",
"type": "timestamp",
"primaryKey": false,
"notNull": true,
"default": "now()"
}
},
"indexes": {},
"foreignKeys": {},
"compositePrimaryKeys": {},
"uniqueConstraints": {},
"policies": {},
"checkConstraints": {},
"isRLSEnabled": false
}
},
"enums": {
"public.blueprint_status": {
"name": "blueprint_status",
"schema": "public",
"values": [
"draft",
"verifying",
"published",
"flagged"
]
},
"public.checkpoint_kind": {
"name": "checkpoint_kind",
"schema": "public",
"values": [
"predict",
"explain",
"solve"
]
},
"public.grade_verdict": {
"name": "grade_verdict",
"schema": "public",
"values": [
"mastered",
"partial",
"misconception",
"uncertain"
]
},
"public.job_status": {
"name": "job_status",
"schema": "public",
"values": [
"pending",
"running",
"done",
"failed"
]
},
"public.verify_status": {
"name": "verify_status",
"schema": "public",
"values": [
"pending",
"pass",
"fail",
"uncertain"
]
},
"public.verify_verdict": {
"name": "verify_verdict",
"schema": "public",
"values": [
"pass",
"fail",
"uncertain"
]
}
},
"schemas": {},
"sequences": {},
"roles": {},
"policies": {},
"views": {},
"_meta": {
"columns": {},
"schemas": {},
"tables": {}
}
}