SQLite format 3 @ A + A .r� � ������ g
�� 6�W"�p��AII ?S- indexsqlite_autoindex_ManuallyVerified_1ManuallyVerified�4�?tableReviewsReviewsCREATE TABLE Reviews (
name text not null,
date text not null,
reviewer text not null,
comment text,
primary key (name, date)
)-A indexsqlite_autoindex_Reviews_1Reviews�v%%�/tableTestCoverageTestCoverageCREATE TABLE TestCoverage (
req_id text not null references Requirements(id),
test_run_name text not null,
test_run_date text not null,
test_name text not null,
trace_filepath text not null,
trace_line integer not null,
primary key (req_id, test_run_name, test_run_date, test_name, trace_filepath, trace_line),
foreign key (test_run_name, test_run_date, test_name) references Tests(test_run_name, test_run_date, name) on delete cascade,
foreign key (req_id, trace_filepath, trace_line) references Traces(req_id, filepath, line) on delete cascade
)7K% indexsqlite_autoindex_TestCoverage_1TestCoverage�%%�KtableSkippedTestsSkippedTestsCREATE TABLE SkippedTests (
test_run_name text not null,
test_run_date text not null,
name text not null,
filepath text not null,
line integer not null,
reason text,
primary key (test_run_name, test_run_date, name),
foreign key (test_run_name, test_run_date) references TestRuns(name, date) on delete cascade
)7K% indexsqlite_autoindex_SkippedTests_1SkippedTests�r
�CtableTestsTestsCREATE TABLE Tests (
test_run_name text not null,
test_run_date text not null,
name text not null,
filepath text not null,
line integer not null,
passed integer,
primary key (test_run_name, test_run_date, name),
foreign key (test_run_name, test_run_date) references TestRuns(name, date) on delete cascade
))= indexsqlite_autoindex_Tests_1Tests�1�5tableTestRunsTestRunsCREATE TABLE TestRuns (
name text not null,
date text not null,
nr_of_tests integer,
logs text,
primary key (name, date)
)/C indexsqlite_autoindex_TestRuns_1TestRuns
�Z !!�tableTraceSpansTraceSpans
CREATE TABLE TraceSpans (
req_id text not null,
filepath text not null,
line integer not null,
start integer not null,
end integer not null,
primary key (req_id, filepath, line),
foreign key (req_id, filepath, line) references Traces(req_id, filepath, line) on delete cascade
)3
G! indexsqlite_autoindex_TraceSpans_1TraceSpans��YtableTracesTracesCREATE TABLE Traces (
req_id text not null references Requirements(id) on delete cascade,
generation integer not null,
filepath text not null,
line integer not null,
primary key (req_id, filepath, line)
)+? indexsqlite_autoindex_Traces_1Traces �99�YtableRequirementHierarchiesRequirementHierarchiesCREATE TABLE RequirementHierarchies (
child_id text not null references Requirements(id) on delete cascade,
parent_id text not null references Requirements(id) on delete cascade,
primary key (child_id, parent_id)
)K_9 indexsqlite_autoindex_RequirementHierarchies_1RequirementHierarchies�8%%�3tableRequirementsRequirementsCREATE TABLE Requirements (
id text not null primary key,
generation integer not null,
origin text not null,
annotation text
)7K% indexsqlite_autoindex_Requirements_1Requirements�)--�table_sqlx_migrations_sqlx_migrationsCREATE TABLE _sqlx_migrations (
version BIGINT PRIMARY KEY,
description TEXT NOT NULL,
installed_on TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
success BOOLEAN NOT NULL,
checksum BLOB NOT NULL,
execution_time BIGINT NOT NULL
)?S- indexsqlite_autoindex__sqlx_migrati 3 0 ) &