Add db migration management infratructure

This commit is contained in:
mikiher 2024-09-04 12:48:10 +03:00
parent 0344a63b48
commit 3f93b93d9e
13 changed files with 1385 additions and 172 deletions

View file

@ -0,0 +1,9 @@
async function up() {
console.log('v1.10.0 up')
}
async function down() {
console.log('v1.10.0 down')
}
module.exports = { up, down }