initial commit
authorJustin Wind <justin.wind+git@gmail.com>
Tue, 7 Nov 2023 01:30:19 +0000 (17:30 -0800)
committerJustin Wind <justin.wind+git@gmail.com>
Tue, 7 Nov 2023 01:44:15 +0000 (17:44 -0800)
commit86a53d83e6afb51c9eeb51c7abe7cb07e635de7e
tree249edf885e8300c57b972c18ca64f2bab7a0e9c0
parent9226830bf326113812150c160139d443a19c69bc
initial commit
31 files changed:
.eslintrc.json [new file with mode: 0644]
.gitignore [new file with mode: 0644]
.nycrc.json [new file with mode: 0644]
README.md [new file with mode: 0644]
index.js [new file with mode: 0644]
lib/abstract.js [new file with mode: 0644]
lib/errors.js [new file with mode: 0644]
lib/factory.js [new file with mode: 0644]
lib/postgres.js [new file with mode: 0644]
lib/schema-version-helper.js [new file with mode: 0644]
lib/sqlite.js [new file with mode: 0644]
package-lock.json [new file with mode: 0644]
package.json [new file with mode: 0644]
test-integration/postgres/index.js [new file with mode: 0644]
test-integration/postgres/sql/almanac-get-all.sql [new file with mode: 0644]
test-integration/postgres/sql/almanac-get.sql [new file with mode: 0644]
test-integration/postgres/sql/almanac-upsert.sql [new file with mode: 0644]
test-integration/postgres/sql/schema/1.0.0/apply.sql [new file with mode: 0644]
test-integration/sqlite/index.js [new file with mode: 0644]
test-integration/sqlite/sql/almanac-get-all.sql [new file with mode: 0644]
test-integration/sqlite/sql/almanac-get.sql [new file with mode: 0644]
test-integration/sqlite/sql/almanac-upsert.sql [new file with mode: 0644]
test-integration/sqlite/sql/schema/1.0.0/apply.sql [new file with mode: 0644]
test/helpers.js [new file with mode: 0644]
test/integration.js [new file with mode: 0644]
test/lib/abstract.js [new file with mode: 0644]
test/lib/errors.js [new file with mode: 0644]
test/lib/factory.js [new file with mode: 0644]
test/lib/postgres.js [new file with mode: 0644]
test/lib/schema-version-helper.js [new file with mode: 0644]
test/lib/sqlite.js [new file with mode: 0644]