redeem proffered tickets, db schema 1.1.0
authorJustin Wind <justin.wind+git@gmail.com>
Fri, 22 Dec 2023 21:03:30 +0000 (13:03 -0800)
committerJustin Wind <justin.wind+git@gmail.com>
Fri, 22 Dec 2023 23:43:14 +0000 (15:43 -0800)
commit726cd980f0ed5588cfe8cbb2d994d5e4aef6e292
treec394439d90859ec733aa115cd8c79e7d7294838a
parent3c145bc590577c738df4d279744f3e2f9a250294
redeem proffered tickets, db schema 1.1.0
38 files changed:
.eslintrc.json
README.md
bin/publishTickets.js [new file with mode: 0644]
bin/ticket-queue-profile.js [new file with mode: 0644]
config/default.js
config/test.js
documentation/media/postgres-er.svg
documentation/media/sqlite-er.svg
package-lock.json
package.json
src/chores.js
src/db/abstract.js
src/db/postgres/index.js
src/db/postgres/sql/schema/1.1.0/apply.sql [new file with mode: 0644]
src/db/postgres/sql/schema/1.1.0/er.dot [new file with mode: 0644]
src/db/postgres/sql/schema/1.1.0/revert.sql [new file with mode: 0644]
src/db/postgres/sql/ticket-redeemed.sql [new file with mode: 0644]
src/db/postgres/sql/ticket-token-get-unpublished.sql [new file with mode: 0644]
src/db/postgres/sql/ticket-token-published.sql [new file with mode: 0644]
src/db/sqlite/index.js
src/db/sqlite/sql/schema/1.0.0/revert.sql
src/db/sqlite/sql/schema/1.1.0/apply.sql [new file with mode: 0644]
src/db/sqlite/sql/schema/1.1.0/er.dot [new file with mode: 0644]
src/db/sqlite/sql/schema/1.1.0/revert.sql [new file with mode: 0644]
src/db/sqlite/sql/ticket-redeemed.sql [new file with mode: 0644]
src/db/sqlite/sql/ticket-token-get-unpublished.sql [new file with mode: 0644]
src/db/sqlite/sql/ticket-token-published.sql [new file with mode: 0644]
src/enum.js
src/manager.js
src/service.js
src/template/admin-html.js
src/template/root-html.js
test/src/chores.js
test/src/db/integration.js
test/src/db/postgres.js
test/src/db/sqlite.js
test/src/manager.js
test/stub-db.js