add hooks for migrations, migrations run in transactions, support alternate meta...
authorJustin Wind <justin.wind+git@gmail.com>
Thu, 12 Jun 2025 20:28:31 +0000 (13:28 -0700)
committerJustin Wind <justin.wind+git@gmail.com>
Thu, 12 Jun 2025 20:28:31 +0000 (13:28 -0700)
commit886b0d1fe002ece975e0f29a38d97f2e87bf8803
tree8794639ad0f9728866e627f6e798546c0e6062c1
parentd5203636294766748ba6d7b5743056470c76d53b
add hooks for migrations, migrations run in transactions, support alternate meta table name, remove incomplete postgres table-schema support
20 files changed:
README.md
lib/abstract.js
lib/postgres-creator.js
lib/sqlite-creator.js
package-lock.json
test-integration/postgresql/sql/schema/1.0.0/apply.sql
test-integration/postgresql/sql/schema/1.0.0/hooks.js [new file with mode: 0644]
test-integration/postgresql/sql/schema/init-hooks.js [new file with mode: 0644]
test-integration/postgresql/sql/schema/init.sql [new file with mode: 0644]
test-integration/sqlite/sql/schema/1.0.0/apply.sql
test-integration/sqlite/sql/schema/1.0.0/hooks.js [new file with mode: 0644]
test-integration/sqlite/sql/schema/init-hooks.js [new file with mode: 0644]
test-integration/sqlite/sql/schema/init.sql [new file with mode: 0644]
test/data/hooks.bad [new file with mode: 0644]
test/data/hooks.js [new file with mode: 0644]
test/helpers.js
test/integration.js
test/lib/abstract.js
test/lib/postgres-creator.js
test/lib/sqlite-creator.js