text stringlengths 3 8.33k | repo stringclasses 52
values | path stringlengths 6 141 | language stringclasses 35
values | sha stringlengths 64 64 | chunk_index int32 0 273 | n_tokens int32 1 896 |
|---|---|---|---|---|---|---|
CREATE TYPE "public"."validity_state" AS ENUM('unknown', 'valid', 'invalid', 'stale', 'unsupported');--> statement-breakpoint
CREATE TABLE "artifacts" (
"id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL,
"run_id" uuid NOT NULL,
"task_id" uuid,
"artifact_key" text NOT NULL,
"kind" text NOT NULL,
"title" tex... | diplomarbeit-os | apps/studio/drizzle/migrations/0000_initial_durable_state.sql | SQL | 6730d1a0cb25cc29d57fe7df4fe20743272ac46fd951e485e894e16c2fb80f14 | 0 | 896 |
NOT NULL,
"validity" "validity_state" DEFAULT 'unknown' NOT NULL,
"metadata" jsonb DEFAULT '{}'::jsonb NOT NULL,
"created_at" timestamp with time zone DEFAULT now() NOT NULL,
"updated_at" timestamp with time zone DEFAULT now() NOT NULL,
CONSTRAINT "decisions_run_decision_key_unique" UNIQUE("run_id","decision_key")... | diplomarbeit-os | apps/studio/drizzle/migrations/0000_initial_durable_state.sql | SQL | 802225db7c421e5419e0424f18229427069552dcba531bbc9d597ddd7e4e711b | 1 | 896 |
NULL,
"validity" "validity_state" DEFAULT 'unknown' NOT NULL,
"detected_at" timestamp with time zone DEFAULT now() NOT NULL,
"metadata" jsonb DEFAULT '{}'::jsonb NOT NULL,
"created_at" timestamp with time zone DEFAULT now() NOT NULL,
"updated_at" timestamp with time zone DEFAULT now() NOT NULL,
CONSTRAINT "findin... | diplomarbeit-os | apps/studio/drizzle/migrations/0000_initial_durable_state.sql | SQL | b221e87e0923e919b30a10945420fd5b9b7819ebe840236f21ae229089005bc7 | 2 | 896 |
metadata" jsonb DEFAULT '{}'::jsonb NOT NULL,
"created_at" timestamp with time zone DEFAULT now() NOT NULL,
"updated_at" timestamp with time zone DEFAULT now() NOT NULL,
CONSTRAINT "repairs_finding_repair_key_unique" UNIQUE("finding_id","repair_key"),
CONSTRAINT "repairs_repair_key_not_blank" CHECK (length(trim("re... | diplomarbeit-os | apps/studio/drizzle/migrations/0000_initial_durable_state.sql | SQL | d0937876298591f3e51956553208745b63b4b01490d7d069df1ae03b34b09a20 | 3 | 896 |
FOREIGN KEY ("run_id") REFERENCES "public"."runs"("id") ON DELETE cascade ON UPDATE no action;--> statement-breakpoint
ALTER TABLE "artifacts" ADD CONSTRAINT "artifacts_task_id_tasks_id_fk" FOREIGN KEY ("task_id") REFERENCES "public"."tasks"("id") ON DELETE set null ON UPDATE no action;--> statement-breakpoint
ALTER TA... | diplomarbeit-os | apps/studio/drizzle/migrations/0000_initial_durable_state.sql | SQL | ebd52c565ee5fb642aa0b70ad3c56d2602cff5f5751e5a097d22e1a24cdee68b | 4 | 896 |
-breakpoint
ALTER TABLE "evidence" ADD CONSTRAINT "evidence_artifact_id_artifacts_id_fk" FOREIGN KEY ("artifact_id") REFERENCES "public"."artifacts"("id") ON DELETE set null ON UPDATE no action;--> statement-breakpoint
ALTER TABLE "evidence" ADD CONSTRAINT "evidence_citation_id_citations_id_fk" FOREIGN KEY ("citation_i... | diplomarbeit-os | apps/studio/drizzle/migrations/0000_initial_durable_state.sql | SQL | 725d1a1b094e691f25492d11b61b69ff8c9d73f2ef1c351d05bc7849d7c5299d | 5 | 896 |
breakpoint
CREATE INDEX "events_evidence_idx" ON "events" USING btree ("evidence_id");--> statement-breakpoint
CREATE INDEX "events_finding_idx" ON "events" USING btree ("finding_id");--> statement-breakpoint
CREATE INDEX "events_repair_idx" ON "events" USING btree ("repair_id");--> statement-breakpoint
CREATE INDEX "e... | diplomarbeit-os | apps/studio/drizzle/migrations/0000_initial_durable_state.sql | SQL | 9ac0a69c886e4cd9e76832e95df5e9aba0bdd32d21236c2b849c8c9164ea5373 | 6 | 409 |
CREATE TABLE "derived_knowledge_source_links" (
"id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL,
"source_reference_id" uuid NOT NULL,
"prior_project_id" uuid,
"concept_id" uuid,
"project_concept_link_id" uuid,
"recovery_decision_id" uuid,
"link_role" text DEFAULT 'supporting' NOT NULL,
"metadata" jsonb... | diplomarbeit-os | apps/studio/drizzle/migrations/0001_derived_knowledge_store.sql | SQL | 415503c578b0ff427ace4aa723fabf65e4a25c1809d0a4eae517e0d0c6cb6657 | 0 | 896 |
(
"id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL,
"prior_project_id" uuid NOT NULL,
"concept_id" uuid NOT NULL,
"link_role" text NOT NULL,
"link_context" text NOT NULL,
"confidence" integer DEFAULT 100 NOT NULL,
"validity" "validity_state" DEFAULT 'unknown' NOT NULL,
"metadata" jsonb DEFAULT '{}'::jso... | diplomarbeit-os | apps/studio/drizzle/migrations/0001_derived_knowledge_store.sql | SQL | 87ac87c6624d55a43a7daef92aa0c219d567cb0e3568dfee03e6aae21bd40db5 | 1 | 896 |
jsonb NOT NULL,
"created_at" timestamp with time zone DEFAULT now() NOT NULL,
"updated_at" timestamp with time zone DEFAULT now() NOT NULL,
CONSTRAINT "syp_concept_records_normalized_key_unique" UNIQUE("normalized_key"),
CONSTRAINT "syp_concept_records_normalized_key_not_blank" CHECK (length(trim("syp_concept_recor... | diplomarbeit-os | apps/studio/drizzle/migrations/0001_derived_knowledge_store.sql | SQL | cd9e90236de8b1d09695f8b50890bd67322a794ff4584000f956b36943e1618c | 2 | 627 |
CREATE TABLE "task_attempts" (
"id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL,
"run_id" uuid NOT NULL,
"task_id" uuid NOT NULL,
"attempt_number" integer NOT NULL,
"status" text DEFAULT 'queued' NOT NULL,
"failure_class" text,
"started_at" timestamp with time zone,
"finished_at" timestamp with time zon... | diplomarbeit-os | apps/studio/drizzle/migrations/0002_task_orchestration.sql | SQL | 46fc31251b2873d31d1b2c81a888509c0e45c93444f833b920eac04c99e86130 | 0 | 896 |
);--> statement-breakpoint
CREATE INDEX "task_attempts_status_idx" ON "task_attempts" USING btree ("status");--> statement-breakpoint
CREATE INDEX "task_dependencies_run_idx" ON "task_dependencies" USING btree ("run_id");--> statement-breakpoint
CREATE INDEX "task_dependencies_task_idx" ON "task_dependencies" USING btr... | diplomarbeit-os | apps/studio/drizzle/migrations/0002_task_orchestration.sql | SQL | 64e14dd87ab0461906f57fda3b321ecb15f1f47bde262b14d9907e90d757f95a | 1 | 94 |
CREATE TABLE "model_call_progress_events" (
"id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL,
"run_id" uuid NOT NULL,
"model_call_id" uuid NOT NULL,
"sequence" integer NOT NULL,
"event_type" text NOT NULL,
"actor" text DEFAULT 'model_adapter' NOT NULL,
"summary" text NOT NULL,
"payload" jsonb DEFAULT '{... | diplomarbeit-os | apps/studio/drizzle/migrations/0003_model_and_tool_adapter_layer.sql | SQL | 996d2287625b18863a84d1bca0139609fda6075bd88484ffca0a49151ccb4b98 | 0 | 896 |
0),
CONSTRAINT "model_call_records_diagnostic_not_blank_when_present" CHECK ("model_call_records"."diagnostic" is null or length(trim("model_call_records"."diagnostic")) > 0),
CONSTRAINT "model_call_records_attempt_number_positive" CHECK ("model_call_records"."attempt_number" > 0),
CONSTRAINT "model_call_records_dur... | diplomarbeit-os | apps/studio/drizzle/migrations/0003_model_and_tool_adapter_layer.sql | SQL | 3ece7bf14b700d73061ab7ba394ba46b597716371768b19124f8fe70943b857f | 1 | 686 |
CREATE TABLE "generated_repositories" (
"id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL,
"run_id" uuid NOT NULL,
"task_id" uuid,
"artifact_id" uuid,
"repository_key" text NOT NULL,
"display_name" text NOT NULL,
"root_descriptor" text NOT NULL,
"stack_labels" jsonb DEFAULT '[]'::jsonb NOT NULL,
"manife... | diplomarbeit-os | apps/studio/drizzle/migrations/0004_generated_repository_contract.sql | SQL | 3637186522a32f5d4ff4a7aa4f78f829b168c9f7eb5976d589be72613d3aa4ca | 0 | 896 |
'::jsonb NOT NULL,
"timeout_hint" text,
"resource_hints" jsonb DEFAULT '[]'::jsonb NOT NULL,
"unsupported_reason" text,
"metadata" jsonb DEFAULT '{}'::jsonb NOT NULL,
"created_at" timestamp with time zone DEFAULT now() NOT NULL,
"updated_at" timestamp with time zone DEFAULT now() NOT NULL,
CONSTRAINT "generated_... | diplomarbeit-os | apps/studio/drizzle/migrations/0004_generated_repository_contract.sql | SQL | 6fcd665eded4e1553419e14fae266d912a0dffe69c40ebdd3239c9481fb4676c | 1 | 896 |
CONSTRAINT "generated_repository_dependency_locks_package_manager_label_not_blank_when_present" CHECK ("generated_repository_dependency_locks"."package_manager_label" is null or length(trim("generated_repository_dependency_locks"."package_manager_label")) > 0),
CONSTRAINT "generated_repository_dependency_locks_descrip... | diplomarbeit-os | apps/studio/drizzle/migrations/0004_generated_repository_contract.sql | SQL | 4b2cdd49b3d0b28145c3aff9c4099a39b3f6c32e39da951e5d55f51db151965e | 2 | 896 |
object')
);
--> statement-breakpoint
CREATE TABLE "generated_repository_revisions" (
"id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL,
"run_id" uuid NOT NULL,
"repository_id" uuid NOT NULL,
"parent_revision_id" uuid,
"revision_key" text NOT NULL,
"parent_revision_key" text,
"manifest_version" text NOT NU... | diplomarbeit-os | apps/studio/drizzle/migrations/0004_generated_repository_contract.sql | SQL | ea5fa5365cd05131a592b1b322ebc4d2c6ba39305270b8e08485c4fd0393b11a | 3 | 896 |
> statement-breakpoint
ALTER TABLE "generated_repository_command_log_descriptors" ADD CONSTRAINT "generated_repository_command_log_descriptors_repository_id_generated_repositories_id_fk" FOREIGN KEY ("repository_id") REFERENCES "public"."generated_repositories"("id") ON DELETE cascade ON UPDATE no action;--> statement-... | diplomarbeit-os | apps/studio/drizzle/migrations/0004_generated_repository_contract.sql | SQL | ec7d6ddf9b5675de2138697408ffcc08d1bce070832ddf1a8a76d94fad230bb6 | 4 | 896 |
DELETE cascade ON UPDATE no action;--> statement-breakpoint
ALTER TABLE "generated_repository_revisions" ADD CONSTRAINT "generated_repository_revisions_repository_id_generated_repositories_id_fk" FOREIGN KEY ("repository_id") REFERENCES "public"."generated_repositories"("id") ON DELETE cascade ON UPDATE no action;--> s... | diplomarbeit-os | apps/studio/drizzle/migrations/0004_generated_repository_contract.sql | SQL | a2c0a011b9a7307e622a4018d9a27b37ac9d8c25bbab9e2aeabad0d28c932743 | 5 | 896 |
CREATE INDEX "generated_repository_limitation_reports_repository_idx" ON "generated_repository_limitation_reports" USING btree ("repository_id");--> statement-breakpoint
CREATE INDEX "generated_repository_limitation_reports_revision_idx" ON "generated_repository_limitation_reports" USING btree ("revision_id");--> state... | diplomarbeit-os | apps/studio/drizzle/migrations/0004_generated_repository_contract.sql | SQL | c94bbe5fa89ef3726bc045bfc687c4580672ee4278d3d895556449e03a47babe | 6 | 316 |
CREATE TABLE "sandbox_execution_logs" (
"id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL,
"run_id" uuid NOT NULL,
"sandbox_execution_id" uuid NOT NULL,
"sequence" integer NOT NULL,
"log_key" text NOT NULL,
"stream" text NOT NULL,
"sanitized_content" text,
"content_byte_count" integer DEFAULT 0 NOT NULL,... | diplomarbeit-os | apps/studio/drizzle/migrations/0005_sandbox_execution_records.sql | SQL | 00aedda3c50426df3aaa1ac759d6349156e2b40f6fe373623267ed4c72151b58 | 0 | 896 |
::jsonb NOT NULL,
"metadata" jsonb DEFAULT '{}'::jsonb NOT NULL,
"created_at" timestamp with time zone DEFAULT now() NOT NULL,
"updated_at" timestamp with time zone DEFAULT now() NOT NULL,
CONSTRAINT "sandbox_executions_run_execution_key_unique" UNIQUE("run_id","execution_key"),
CONSTRAINT "sandbox_executions_exec... | diplomarbeit-os | apps/studio/drizzle/migrations/0005_sandbox_execution_records.sql | SQL | 36be6071457e473ff74189207c85122e4cd1ed02c6083501c9d8d9e0f9e14a1a | 1 | 896 |
,
CONSTRAINT "sandbox_executions_allowed_env_names_array" CHECK (jsonb_typeof("sandbox_executions"."allowed_env_names") = 'array'),
CONSTRAINT "sandbox_executions_denied_env_names_array" CHECK (jsonb_typeof("sandbox_executions"."denied_env_names") = 'array'),
CONSTRAINT "sandbox_executions_resource_metadata_object" ... | diplomarbeit-os | apps/studio/drizzle/migrations/0005_sandbox_execution_records.sql | SQL | 079db6ddba3fe1ad2aabea76d94663020c9762555cac305bb333b9788b49782f | 2 | 896 |
) REFERENCES "public"."generated_repository_command_specs"("id") ON DELETE cascade ON UPDATE no action;--> statement-breakpoint
CREATE INDEX "sandbox_execution_logs_run_idx" ON "sandbox_execution_logs" USING btree ("run_id");--> statement-breakpoint
CREATE INDEX "sandbox_execution_logs_execution_idx" ON "sandbox_execut... | diplomarbeit-os | apps/studio/drizzle/migrations/0005_sandbox_execution_records.sql | SQL | 9d1b10445b3a0b899d09e2821bbd019ba90088c25bacc2be7a5958d31d1f7012 | 3 | 344 |
CREATE TABLE "verification_acceptance_criterion_links" (
"id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL,
"verification_check_id" uuid NOT NULL,
"run_id" uuid NOT NULL,
"project_spec_id" uuid NOT NULL,
"criterion_index" integer NOT NULL,
"criterion_key" text NOT NULL,
"criterion_text_hash" text NOT NULL... | diplomarbeit-os | apps/studio/drizzle/migrations/0006_deterministic_verification_records.sql | SQL | b18b5cbb024dfc0b86d8e21753c150e15919ca3ff7531f58d37418ff17784a0e | 0 | 896 |
= 0),
CONSTRAINT "verification_checks_duration_nonnegative_when_present" CHECK ("verification_checks"."duration_ms" is null or "verification_checks"."duration_ms" >= 0),
CONSTRAINT "verification_checks_environment_metadata_object" CHECK (jsonb_typeof("verification_checks"."environment_metadata") = 'object'),
CONSTRA... | diplomarbeit-os | apps/studio/drizzle/migrations/0006_deterministic_verification_records.sql | SQL | dfee14432c900663577ed274411072e3b88f51a8af9fd31ea2645f2f8643a19b | 1 | 896 |
-> statement-breakpoint
ALTER TABLE "verification_checks" ADD CONSTRAINT "verification_checks_verification_run_id_verification_runs_id_fk" FOREIGN KEY ("verification_run_id") REFERENCES "public"."verification_runs"("id") ON DELETE cascade ON UPDATE no action;--> statement-breakpoint
ALTER TABLE "verification_checks" AD... | diplomarbeit-os | apps/studio/drizzle/migrations/0006_deterministic_verification_records.sql | SQL | 4740b1d064dc69e260deaf06c260a6b51bfac55a98ae984f110d97ec6f38606a | 2 | 896 |
> statement-breakpoint
CREATE INDEX "verification_checks_sandbox_execution_idx" ON "verification_checks" USING btree ("sandbox_execution_id");--> statement-breakpoint
CREATE INDEX "verification_checks_evidence_idx" ON "verification_checks" USING btree ("evidence_id");--> statement-breakpoint
CREATE INDEX "verification_... | diplomarbeit-os | apps/studio/drizzle/migrations/0006_deterministic_verification_records.sql | SQL | 09ab642911c264efb85047f3ce18aff2cdfd6b1192590fbef5b1622907b10bbc | 3 | 274 |
CREATE TABLE "browser_smoke_artifacts" (
"id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL,
"browser_smoke_run_id" uuid NOT NULL,
"run_id" uuid NOT NULL,
"generated_repository_id" uuid NOT NULL,
"generated_repository_revision_id" uuid NOT NULL,
"evidence_id" uuid,
"artifact_key" text NOT NULL,
"artifact_... | diplomarbeit-os | apps/studio/drizzle/migrations/0007_browser_smoke_evidence.sql | SQL | 750a31816f301fc42b1fa5ebd941532563ce0a5fb63bffad670e265431922017 | 0 | 896 |
'passed', 'unavailable', 'unsupported', 'blank-page', 'missing-signal', 'console-error', 'page-error', 'request-failed', 'severe-layout-failure', 'artifact-capture-failed', 'stale')),
CONSTRAINT "browser_smoke_runs_completed_after_started" CHECK ("browser_smoke_runs"."completed_at" is null or "browser_smoke_runs"."sta... | diplomarbeit-os | apps/studio/drizzle/migrations/0007_browser_smoke_evidence.sql | SQL | 0c852ab4334c75413f4bd022255b36654b0aa8bc55afc6dd63b94f1deec02207 | 1 | 896 |
sandbox_execution_id") REFERENCES "public"."sandbox_executions"("id") ON DELETE set null ON UPDATE no action;--> statement-breakpoint
ALTER TABLE "browser_smoke_runs" ADD CONSTRAINT "browser_smoke_runs_generated_repository_runtime_service_id_generated_repository_runtime_services_id_fk" FOREIGN KEY ("generated_repositor... | diplomarbeit-os | apps/studio/drizzle/migrations/0007_browser_smoke_evidence.sql | SQL | c37e211f9ea0007cdae78e26eff286fe9de98138202d3a070e8654eb81b3328b | 2 | 552 |
CREATE TABLE "artifact_dependencies" (
"id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL,
"run_id" uuid NOT NULL,
"artifact_version_id" uuid NOT NULL,
"dependency_key" text NOT NULL,
"source_record_type" text NOT NULL,
"source_record_id" uuid,
"source_record_key" text NOT NULL,
"source_version_or_hash" t... | diplomarbeit-os | apps/studio/drizzle/migrations/0008_artifact_source_model.sql | SQL | 820534edfe04db6f8a7d1a1b21146e35e13fd4c50348b7c00a4e300dc59e2b20 | 0 | 896 |
public"."runs"("id") ON DELETE cascade ON UPDATE no action;--> statement-breakpoint
ALTER TABLE "artifact_dependencies" ADD CONSTRAINT "artifact_dependencies_artifact_version_id_artifact_versions_id_fk" FOREIGN KEY ("artifact_version_id") REFERENCES "public"."artifact_versions"("id") ON DELETE cascade ON UPDATE no acti... | diplomarbeit-os | apps/studio/drizzle/migrations/0008_artifact_source_model.sql | SQL | f4b0b9d76f3959056b805147e678d4866ac966c4dd9c05b1f70d9e8af0149221 | 1 | 476 |
{
"id": "48f5523c-9f67-4d2f-b2de-0580a3eb7095",
"prevId": "00000000-0000-0000-0000-000000000000",
"version": "7",
"dialect": "postgresql",
"tables": {
"public.artifacts": {
"name": "artifacts",
"schema": "",
"columns": {
"id": {
"name": "id",
"type": "uuid",
... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0000_snapshot.json | JSON | c3f2dff67737f01472d3b6bc4fcf2bf9035613a0f1afd4237c4aac64ea63e65f | 0 | 896 |
"tableTo": "runs",
"columnsFrom": ["run_id"],
"columnsTo": ["id"],
"onDelete": "cascade",
"onUpdate": "no action"
},
"artifacts_task_id_tasks_id_fk": {
"name": "artifacts_task_id_tasks_id_fk",
"tableFrom": "artifacts",
"tableTo": "tas... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0000_snapshot.json | JSON | 35bcb56057ac22ed624e7d5b667ada3daf3642fdfcadf8cca4bdae9cddae5257 | 1 | 896 |
": "now()"
},
"updated_at": {
"name": "updated_at",
"type": "timestamp with time zone",
"primaryKey": false,
"notNull": true,
"default": "now()"
}
},
"indexes": {
"citations_project_idx": {
"name": "citations_project... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0000_snapshot.json | JSON | 6d2b5ec6793d861fa20c9b958b9170ead302883a406f2e2f487512aac24a5486 | 2 | 896 |
",
"onUpdate": "no action"
}
},
"compositePrimaryKeys": {
"decision_artifacts_decision_id_artifact_id_pk": {
"name": "decision_artifacts_decision_id_artifact_id_pk",
"columns": ["decision_id", "artifact_id"]
}
},
"uniqueConstraints": {},
... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0000_snapshot.json | JSON | 4b80f5fb5e49234bb68b268926b721658c14892f7adf636a78fcf108e49faa3d | 3 | 896 |
": ["task_id"],
"columnsTo": ["id"],
"onDelete": "cascade",
"onUpdate": "no action"
}
},
"compositePrimaryKeys": {
"decision_tasks_decision_id_task_id_pk": {
"name": "decision_tasks_decision_id_task_id_pk",
"columns": ["decision_id", "task_id... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0000_snapshot.json | JSON | 03249255232047d8699e23057156a3c0798e28f4982831f382ddc93604bedbfa | 4 | 896 |
: {},
"checkConstraints": {
"decisions_decision_key_not_blank": {
"name": "decisions_decision_key_not_blank",
"value": "length(trim(\"decisions\".\"decision_key\")) > 0"
},
"decisions_title_not_blank": {
"name": "decisions_title_not_blank",
"value": ... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0000_snapshot.json | JSON | 6d83a288519b3998c8df8abddf157a0fdb1b7cd15fed9d60d866618d5f81a970 | 5 | 896 |
,
"concurrently": false,
"method": "btree",
"with": {}
},
"events_task_idx": {
"name": "events_task_idx",
"columns": [
{
"expression": "task_id",
"isExpression": false,
"asc": true,
"nul... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0000_snapshot.json | JSON | b181a7fd18685d4315c2333df5e7d448924e77c02e978a98f916583fd4cef070 | 6 | 896 |
": {
"name": "events_finding_id_findings_id_fk",
"tableFrom": "events",
"tableTo": "findings",
"columnsFrom": ["finding_id"],
"columnsTo": ["id"],
"onDelete": "set null",
"onUpdate": "no action"
},
"events_repair_id_repairs_id_fk": {
... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0000_snapshot.json | JSON | fee36af8ad689fea8ced30e16d5ea8a830f91d8476de3800216d65358517dceb | 7 | 896 |
public",
"primaryKey": false,
"notNull": true,
"default": "'unknown'"
},
"uri": {
"name": "uri",
"type": "text",
"primaryKey": false,
"notNull": false
},
"captured_at": {
"name": "captured_at",
"typ... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0000_snapshot.json | JSON | 1886e37a89f92c4f2f807139c96e47c14ef6757e18742f1fcf3a2e4e023bcb07 | 8 | 896 |
compositePrimaryKeys": {},
"uniqueConstraints": {
"evidence_run_evidence_key_unique": {
"name": "evidence_run_evidence_key_unique",
"nullsNotDistinct": false,
"columns": ["run_id", "evidence_key"]
}
},
"policies": {},
"checkConstraints": {
"e... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0000_snapshot.json | JSON | b9a96fc3709595218a388d2e5c6f59dde604bcaaaab61e3d41b19167d240378c | 9 | 896 |
,
"primaryKey": false,
"notNull": true,
"default": "now()"
},
"updated_at": {
"name": "updated_at",
"type": "timestamp with time zone",
"primaryKey": false,
"notNull": true,
"default": "now()"
}
},
"index... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0000_snapshot.json | JSON | c5a93f90e99f5af3ac153f7e52bcd0ca89426e7db1947667363a0d726f0ada2f | 10 | 896 |
description\")) > 0"
},
"findings_severity_not_blank": {
"name": "findings_severity_not_blank",
"value": "length(trim(\"findings\".\"severity\")) > 0"
},
"findings_status_not_blank": {
"name": "findings_status_not_blank",
"value": "length(trim(\"fi... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0000_snapshot.json | JSON | 365bc1d8cc8bf98566277372edf02268fc6fbb1e26f47d81c61881b072fdc3a2 | 11 | 896 |
},
"policies": {},
"checkConstraints": {
"project_specs_version_positive": {
"name": "project_specs_version_positive",
"value": "\"project_specs\".\"version\" > 0"
},
"project_specs_title_not_blank": {
"name": "project_specs_title_not_blank",
"... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0000_snapshot.json | JSON | 3b068c3ca8db8cfb350392ef6e079ce59fb7b384e8c35e81bf31aef0545796e2 | 12 | 896 |
",
"value": "length(trim(\"projects\".\"title\")) > 0"
},
"projects_status_not_blank": {
"name": "projects_status_not_blank",
"value": "length(trim(\"projects\".\"status\")) > 0"
},
"projects_metadata_object": {
"name": "projects_metadata_object",
... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0000_snapshot.json | JSON | bf0b4553d7935ac9a4db9761fc3f1cbc395806f467a0af562d5b0d538a4caa81 | 13 | 896 |
: {
"name": "repairs_task_idx",
"columns": [
{
"expression": "task_id",
"isExpression": false,
"asc": true,
"nulls": "last"
}
],
"isUnique": false,
"concurrently": false,
"method":... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0000_snapshot.json | JSON | 2340771da99a59ffc52b55ed6d84d134a6d07ee9b6a06078481a850f2e67f51d | 14 | 896 |
"timestamp with time zone",
"primaryKey": false,
"notNull": false
},
"metadata": {
"name": "metadata",
"type": "jsonb",
"primaryKey": false,
"notNull": true,
"default": "'{}'::jsonb"
},
"created_at": {
"name"... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0000_snapshot.json | JSON | 0c674a51c98181d2c1729f9ee7dee367e0ba52117b244afaf1ed62fc4827806f | 15 | 896 |
: "text",
"primaryKey": false,
"notNull": true
},
"status": {
"name": "status",
"type": "text",
"primaryKey": false,
"notNull": true,
"default": "'pending'"
},
"validity": {
"name": "validity",
"typ... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0000_snapshot.json | JSON | 11ae3700c6247f0329a944cd04f1c3bf930c2a84bbec5a9099cf538d4544afc5 | 16 | 896 |
{
"name": "tasks_payload_object",
"value": "jsonb_typeof(\"tasks\".\"payload\") = 'object'"
},
"tasks_metadata_object": {
"name": "tasks_metadata_object",
"value": "jsonb_typeof(\"tasks\".\"metadata\") = 'object'"
}
},
"isRLSEnabled": false
... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0000_snapshot.json | JSON | 081bfac9f243e9afac6b3f83dfa1ab4cd684da0c0a2ecba4330c14f27cec2c5b | 17 | 674 |
{
"id": "60a42d5f-2345-4c5a-9a78-6aefad18ce13",
"prevId": "48f5523c-9f67-4d2f-b2de-0580a3eb7095",
"version": "7",
"dialect": "postgresql",
"tables": {
"public.artifacts": {
"name": "artifacts",
"schema": "",
"columns": {
"id": {
"name": "id",
"type": "uuid",
... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0001_snapshot.json | JSON | 840762d4020093849196a4fdc4fd3e701ac255190d2e4f63ce3ab2f1005252db | 0 | 896 |
,
"policies": {},
"checkConstraints": {
"decisions_decision_key_not_blank": {
"name": "decisions_decision_key_not_blank",
"value": "length(trim(\"decisions\".\"decision_key\")) > 0"
},
"decisions_title_not_blank": {
"name": "decisions_title_not_blank",
... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0001_snapshot.json | JSON | 4ec63b18961f55bdc51039ff22ed4eb21b859298c3fa7555223d6f1078f0a56e | 5 | 896 |
method": "btree",
"with": {}
},
"derived_knowledge_source_links_concept_idx": {
"name": "derived_knowledge_source_links_concept_idx",
"columns": [
{
"expression": "concept_id",
"isExpression": false,
"asc": true,
... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0001_snapshot.json | JSON | 3177b9749db009166e87cabff41044722f85be78314b0f0250d9cb48af140f8c | 6 | 896 |
true,
"default": "gen_random_uuid()"
},
"run_id": {
"name": "run_id",
"type": "uuid",
"primaryKey": false,
"notNull": true
},
"sequence": {
"name": "sequence",
"type": "integer",
"primaryKey": false,
... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0001_snapshot.json | JSON | 2f6dba2ef8fcfdb5bc3bbc410b88f0e6a63e4673b23dc4b667e9651b4bd54a75 | 7 | 896 |
,
"method": "btree",
"with": {}
},
"events_finding_idx": {
"name": "events_finding_idx",
"columns": [
{
"expression": "finding_id",
"isExpression": false,
"asc": true,
"nulls": "last"
... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0001_snapshot.json | JSON | c35f3e24752ba2c0d2df568e0fd757b259bda72c64ec25fb8bfa35b3df9d4f84 | 8 | 896 |
name": "events_payload_object",
"value": "jsonb_typeof(\"events\".\"payload\") = 'object'"
},
"events_target_at_most_one": {
"name": "events_target_at_most_one",
"value": "num_nonnulls(\"events\".\"task_id\", \"events\".\"decision_id\", \"events\".\"artifact_id\", \"events\... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0001_snapshot.json | JSON | 8aa9368e99895d1d5f79a493460cd09d8c16b0bc9af1dec3f742f8b5b9f65382 | 9 | 896 |
"with": {}
},
"evidence_task_idx": {
"name": "evidence_task_idx",
"columns": [
{
"expression": "task_id",
"isExpression": false,
"asc": true,
"nulls": "last"
}
],
"isUnique": false,
... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0001_snapshot.json | JSON | bee63c376c73292c50e008d82ee0e5f1a8c9d6b8d2b645a883cb492a7b9c5e98 | 10 | 896 |
primaryKey": true,
"notNull": true,
"default": "gen_random_uuid()"
},
"run_id": {
"name": "run_id",
"type": "uuid",
"primaryKey": false,
"notNull": true
},
"task_id": {
"name": "task_id",
"type": "uuid",
... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0001_snapshot.json | JSON | 5398ef4248f21a2de12c5f3096bb29b1b2ec198261e019b156da5b72826abcfb | 11 | 896 |
name": "findings_evidence_idx",
"columns": [
{
"expression": "evidence_id",
"isExpression": false,
"asc": true,
"nulls": "last"
}
],
"isUnique": false,
"concurrently": false,
"method": "btre... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0001_snapshot.json | JSON | 20d9998e8441ce937f5bdbe2e88813a6248e6bd6ea7b204d3f316c5eb94e5586 | 12 | 896 |
{
"name": "action",
"type": "text",
"primaryKey": false,
"notNull": true
},
"rationale": {
"name": "rationale",
"type": "text",
"primaryKey": false,
"notNull": true
},
"validity": {
"name": "validit... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0001_snapshot.json | JSON | b55af9d7fa8153fd2723792618cc80f75882547c15afcb25adc46f1c7e5d8407 | 13 | 896 |
: "integer",
"primaryKey": false,
"notNull": false
},
"span_end": {
"name": "span_end",
"type": "integer",
"primaryKey": false,
"notNull": false
},
"source_hash": {
"name": "source_hash",
"type": "text",
... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0001_snapshot.json | JSON | 6db827aec732375d0c040165bfd5160ec544336e01394765123ae8be081c81de | 14 | 896 |
: "prior_project_id",
"type": "uuid",
"primaryKey": false,
"notNull": true
},
"concept_id": {
"name": "concept_id",
"type": "uuid",
"primaryKey": false,
"notNull": true
},
"link_role": {
"name": "link_role",
... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0001_snapshot.json | JSON | 028915809c8b23368e8e25a1d59243f6a72db121bc47b5da195f1ec1a77842a2 | 15 | 896 |
confidence\" >= 0 and \"prior_project_concept_links\".\"confidence\" <= 100"
},
"prior_project_concept_links_metadata_object": {
"name": "prior_project_concept_links_metadata_object",
"value": "jsonb_typeof(\"prior_project_concept_links\".\"metadata\") = 'object'"
}
},
... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0001_snapshot.json | JSON | e7470266f778a6e7c74ed9b4c757281ac1c42dde72efc3b53d8565ab88d0599f | 16 | 896 |
,
"primaryKey": false,
"notNull": true,
"default": "now()"
}
},
"indexes": {},
"foreignKeys": {},
"compositePrimaryKeys": {},
"uniqueConstraints": {
"prior_project_records_project_key_unique": {
"name": "prior_project_records_project_... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0001_snapshot.json | JSON | b357bf7a51913cf5da567426a73e461b024cb508f0f3758c97dec1877402596b | 17 | 896 |
,
"type": "text",
"primaryKey": false,
"notNull": true,
"default": "'draft'"
},
"validity": {
"name": "validity",
"type": "validity_state",
"typeSchema": "public",
"primaryKey": false,
"notNull": true,
"d... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0001_snapshot.json | JSON | 20ae96dc467b7c6370f2ce557e53a376690a063c02544f26b9b4104e87a7da73 | 18 | 896 |
true
},
"title": {
"name": "title",
"type": "text",
"primaryKey": false,
"notNull": true
},
"description": {
"name": "description",
"type": "text",
"primaryKey": false,
"notNull": false
},
"la... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0001_snapshot.json | JSON | 67d7b443cf50c5fcd2e9d4531addc8d2f92b4b056ec8db9041fbc5346b49ca83 | 19 | 896 |
,
"status": {
"name": "status",
"type": "text",
"primaryKey": false,
"notNull": true,
"default": "'planned'"
},
"validity": {
"name": "validity",
"type": "validity_state",
"typeSchema": "public",
"primaryKe... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0001_snapshot.json | JSON | 168fc955dba81a711bdd1e3793fa1e0d752d2ee3c7ea7f4e132690ba4a42699a | 20 | 896 |
value": "length(trim(\"repairs\".\"repair_key\")) > 0"
},
"repairs_summary_not_blank": {
"name": "repairs_summary_not_blank",
"value": "length(trim(\"repairs\".\"summary\")) > 0"
},
"repairs_status_not_blank": {
"name": "repairs_status_not_blank",
... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0001_snapshot.json | JSON | 01b539e483c80922479ba928e1bd67ff19fb54aaf2b3fcc442e01a514683bc32 | 21 | 896 |
,
"columnsFrom": ["project_id"],
"columnsTo": ["id"],
"onDelete": "cascade",
"onUpdate": "no action"
},
"runs_project_spec_id_project_specs_id_fk": {
"name": "runs_project_spec_id_project_specs_id_fk",
"tableFrom": "runs",
"tableTo": ... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0001_snapshot.json | JSON | 04959f29b8b6fa865e289ed1a9ea61455e304044d6b89b6109409ef697cf9951 | 22 | 896 |
) > 0"
},
"syp_concept_records_concept_type_not_blank": {
"name": "syp_concept_records_concept_type_not_blank",
"value": "length(trim(\"syp_concept_records\".\"concept_type\")) > 0"
},
"syp_concept_records_category_not_blank": {
"name": "syp_concept_records_... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0001_snapshot.json | JSON | 952263d0ffad511be94b4e2cfa2363511126d96f104c256f8fadde70f7044d85 | 23 | 896 |
: false,
"concurrently": false,
"method": "btree",
"with": {}
}
},
"foreignKeys": {
"tasks_run_id_runs_id_fk": {
"name": "tasks_run_id_runs_id_fk",
"tableFrom": "tasks",
"tableTo": "runs",
"columnsFrom": ["run_id"],
... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0001_snapshot.json | JSON | df83c476bb0c1b5bda3cdc5c60cfc067232b21937d44a0a83853f8430c882578 | 24 | 896 |
: {
"name": "validity_states_description_not_blank",
"value": "length(trim(\"validity_states\".\"description\")) > 0"
}
},
"isRLSEnabled": false
}
},
"enums": {
"public.validity_state": {
"name": "validity_state",
"schema": "public",
"values": ["unkn... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0001_snapshot.json | JSON | ec7942df58beaacd738488327cee9e628b91f47920b7aecda98c63aca5e0ac0c | 25 | 164 |
) > 0"
},
"syp_concept_records_concept_type_not_blank": {
"name": "syp_concept_records_concept_type_not_blank",
"value": "length(trim(\"syp_concept_records\".\"concept_type\")) > 0"
},
"syp_concept_records_category_not_blank": {
"name": "syp_concept_records_... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0002_snapshot.json | JSON | e4f7627db34abbdc25ac9682526a6ea2951c5c06c984448cc051207182a9fb4a | 23 | 896 |
],
"isUnique": false,
"concurrently": false,
"method": "btree",
"with": {}
},
"task_attempts_status_idx": {
"name": "task_attempts_status_idx",
"columns": [
{
"expression": "status",
"isExpression": false... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0002_snapshot.json | JSON | 2c6d03722e3e1d7737365546f70e5ac84151a168a76636876d95db0c6d30c4d9 | 24 | 896 |
false,
"notNull": true
},
"dependency_kind": {
"name": "dependency_kind",
"type": "text",
"primaryKey": false,
"notNull": true,
"default": "'requires'"
},
"metadata": {
"name": "metadata",
"type": "jsonb",
... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0002_snapshot.json | JSON | eed5a48f98822d67011ff3cfd7b66ed3bc0f797e7c062658c06f46c3d0db4c8a | 25 | 896 |
": "\"task_dependencies\".\"task_id\" <> \"task_dependencies\".\"depends_on_task_id\""
},
"task_dependencies_metadata_object": {
"name": "task_dependencies_metadata_object",
"value": "jsonb_typeof(\"task_dependencies\".\"metadata\") = 'object'"
}
},
"isRLSEnabled"... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0002_snapshot.json | JSON | 41b3ea4b878af28a1aea85593cca2877f6dbc559b596cf14aea0423fa3fb325e | 26 | 896 |
: {
"name": "validity_state",
"schema": "public",
"values": ["unknown", "valid", "invalid", "stale", "unsupported"]
}
},
"schemas": {},
"sequences": {},
"roles": {},
"policies": {},
"views": {},
"_meta": {
"columns": {},
"schemas": {},
"tables": {}
}
}
| diplomarbeit-os | apps/studio/drizzle/migrations/meta/0002_snapshot.json | JSON | d32f72c93c7cdf406ee321c2a0d8141e39bb41dcf5a54b26aeb48ebf6da2bd7c | 28 | 108 |
: "integer",
"primaryKey": false,
"notNull": false
},
"span_end": {
"name": "span_end",
"type": "integer",
"primaryKey": false,
"notNull": false
},
"source_hash": {
"name": "source_hash",
"type": "text",
... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0003_snapshot.json | JSON | 358ae65490f3d253603f2671d02490bd364490ff84aefcdd52fa19b16162dd47 | 14 | 896 |
: "run_id",
"type": "uuid",
"primaryKey": false,
"notNull": true
},
"model_call_id": {
"name": "model_call_id",
"type": "uuid",
"primaryKey": false,
"notNull": true
},
"sequence": {
"name": "sequence",
... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0003_snapshot.json | JSON | 963fda0696d610749975739ac27406aacf3b5f849c1c2af15ecd91102bea5bf6 | 15 | 896 |
"value": "length(trim(\"model_call_progress_events\".\"event_type\")) > 0"
},
"model_call_progress_events_actor_not_blank": {
"name": "model_call_progress_events_actor_not_blank",
"value": "length(trim(\"model_call_progress_events\".\"actor\")) > 0"
},
"model_call_pro... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0003_snapshot.json | JSON | d900e894bdc83f7182910a152a9a977273947e8be1205d749e629b949ee02f79 | 16 | 896 |
"
},
"attempt_number": {
"name": "attempt_number",
"type": "integer",
"primaryKey": false,
"notNull": true,
"default": 1
},
"usage_metadata": {
"name": "usage_metadata",
"type": "jsonb",
"primaryKey": false,
... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0003_snapshot.json | JSON | 307de31fe5c8538b7ddbde589acf394834c386cd14aaecfc3c0aa69000bfa813 | 17 | 896 |
expression": "status",
"isExpression": false,
"asc": true,
"nulls": "last"
}
],
"isUnique": false,
"concurrently": false,
"method": "btree",
"with": {}
},
"model_call_records_failure_class_idx": {
... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0003_snapshot.json | JSON | 38cfaad514957bc6795b066a9b7447ab4c4aac425236311a3d0b09ac3f4b81d9 | 18 | 896 |
: "model_call_records_failure_code_not_blank_when_present",
"value": "\"model_call_records\".\"failure_code\" is null or length(trim(\"model_call_records\".\"failure_code\")) > 0"
},
"model_call_records_diagnostic_not_blank_when_present": {
"name": "model_call_records_diagnostic_not_... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0003_snapshot.json | JSON | 0b54770a1d33896a84532966f12972d8fcc6ace1a0f6b40519e6077bb0fb5510 | 19 | 896 |
'"
},
"metadata": {
"name": "metadata",
"type": "jsonb",
"primaryKey": false,
"notNull": true,
"default": "'{}'::jsonb"
},
"created_at": {
"name": "created_at",
"type": "timestamp with time zone",
"primaryKey... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0003_snapshot.json | JSON | 31e6610c1d94aaeb5debe137fee61ba7e626ba4f6ad44657d7320c3db6eb220d | 20 | 896 |
name": "objective",
"type": "text",
"primaryKey": false,
"notNull": true
},
"focus": {
"name": "focus",
"type": "text",
"primaryKey": false,
"notNull": true
},
"tags": {
"name": "tags",
"type": "jso... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0003_snapshot.json | JSON | a8655f69961e3057988b2f5d9be9f1bd3b580bebde755f06a8c9fe02e0e2161b | 21 | 896 |
": {
"name": "prior_project_records_focus_not_blank",
"value": "length(trim(\"prior_project_records\".\"focus\")) > 0"
},
"prior_project_records_tags_array": {
"name": "prior_project_records_tags_array",
"value": "jsonb_typeof(\"prior_project_records\".\"tags\") =... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0003_snapshot.json | JSON | 0eea1f8a41017c748313e70348db78359251abe64cc574cbb20d395d32c1029b | 22 | 896 |
: {
"name": "metadata",
"type": "jsonb",
"primaryKey": false,
"notNull": true,
"default": "'{}'::jsonb"
},
"created_at": {
"name": "created_at",
"type": "timestamp with time zone",
"primaryKey": false,
"notNull": t... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0003_snapshot.json | JSON | 824268e4cd4ad78451969389f389da0b74cc026dc6320071dd416bd842d55fdf | 24 | 896 |
"
},
"created_at": {
"name": "created_at",
"type": "timestamp with time zone",
"primaryKey": false,
"notNull": true,
"default": "now()"
},
"updated_at": {
"name": "updated_at",
"type": "timestamp with time zone",
... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0003_snapshot.json | JSON | ca2255ded8379bc3454fef1828715326fd42b4845ef05ec98cdf2545941c715d | 25 | 896 |
: "gen_random_uuid()"
},
"project_id": {
"name": "project_id",
"type": "uuid",
"primaryKey": false,
"notNull": true
},
"project_spec_id": {
"name": "project_spec_id",
"type": "uuid",
"primaryKey": false,
"not... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0003_snapshot.json | JSON | d40eec2ca456e1f33ca7da1a6b5f826672bc8f95df55a0c311043c8a9e4c9582 | 26 | 896 |
: "length(trim(\"runs\".\"status\")) > 0"
},
"runs_metadata_object": {
"name": "runs_metadata_object",
"value": "jsonb_typeof(\"runs\".\"metadata\") = 'object'"
}
},
"isRLSEnabled": false
},
"public.syp_concept_records": {
"name": "syp_concept_record... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0003_snapshot.json | JSON | d9153cf16c025440fc7100b39b61c66c0da41b33300930fe55a1005c182b201b | 27 | 896 |
,
"type": "uuid",
"primaryKey": false,
"notNull": true
},
"task_id": {
"name": "task_id",
"type": "uuid",
"primaryKey": false,
"notNull": true
},
"attempt_number": {
"name": "attempt_number",
"type"... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0003_snapshot.json | JSON | 5853d9a28b019ec82e8b3d486001c0f87504e75adf2179fdede4f6d4502a23c9 | 28 | 896 |
"],
"columnsTo": ["id"],
"onDelete": "cascade",
"onUpdate": "no action"
}
},
"compositePrimaryKeys": {},
"uniqueConstraints": {
"task_attempts_run_task_attempt_unique": {
"name": "task_attempts_run_task_attempt_unique",
"nullsNotDistinc... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0003_snapshot.json | JSON | d1edac65a9d72b2d95f15176441437bc592867d5f2b1c13f61d43708879e72c1 | 29 | 896 |
": [
{
"expression": "run_id",
"isExpression": false,
"asc": true,
"nulls": "last"
}
],
"isUnique": false,
"concurrently": false,
"method": "btree",
"with": {}
},
"task_depen... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0003_snapshot.json | JSON | 8c094b9468d63e382405d6e49055944e0a4c21e81e902a365d6248a0c1e52fc4 | 30 | 896 |
: "findings_evidence_idx",
"columns": [
{
"expression": "evidence_id",
"isExpression": false,
"asc": true,
"nulls": "last"
}
],
"isUnique": false,
"concurrently": false,
"method": "btree",
... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0004_snapshot.json | JSON | 854deb10fbfa5980271225aa71a5a95657aeeecc2008c591e9d60033bd2b1841 | 12 | 896 |
name": "repository_key",
"type": "text",
"primaryKey": false,
"notNull": true
},
"display_name": {
"name": "display_name",
"type": "text",
"primaryKey": false,
"notNull": true
},
"root_descriptor": {
"name": ... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0004_snapshot.json | JSON | 30595ee6966457ed55faa13d1420214888b61bc98535f7bcfd034d97d5977f34 | 13 | 896 |
],
"onDelete": "cascade",
"onUpdate": "no action"
},
"generated_repositories_task_id_tasks_id_fk": {
"name": "generated_repositories_task_id_tasks_id_fk",
"tableFrom": "generated_repositories",
"tableTo": "tasks",
"columnsFrom": ["task_id"],
... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0004_snapshot.json | JSON | b744f0c65ed40f9f38f19120ce18c22e56ca03a972e03e9092cc455d99b01785 | 14 | 896 |
name": "path_descriptor",
"type": "text",
"primaryKey": false,
"notNull": false
},
"summary": {
"name": "summary",
"type": "text",
"primaryKey": false,
"notNull": true
},
"metadata": {
"name": "metadata",
... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0004_snapshot.json | JSON | b7af1f213813929ec2e4fb7758040c36ca215b02972e7a1f90ed2afcbf9000d4 | 15 | 896 |
false,
"columns": ["revision_id", "log_key"]
}
},
"policies": {},
"checkConstraints": {
"generated_repository_command_log_descriptors_command_key_not_blank": {
"name": "generated_repository_command_log_descriptors_command_key_not_blank",
"value": "length(t... | diplomarbeit-os | apps/studio/drizzle/migrations/meta/0004_snapshot.json | JSON | dcc76f193b3a02e06472539abfa781999ed4a056a36778b8c07ac820e9307682 | 16 | 896 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.