chore: Move migration folder into src folder

This commit is contained in:
Faruk AYDIN
2021-10-08 18:59:47 +02:00
committed by Ali BARIN
parent 36ed8d7838
commit a0c34e9353
2 changed files with 2 additions and 2 deletions

View File

@@ -10,10 +10,10 @@ const knexConfig = {
database: appConfig.postgresDatabase, database: appConfig.postgresDatabase,
}, },
migrations: { migrations: {
directory: __dirname + '/db/migrations', directory: __dirname + '/src/db/migrations',
}, },
seeds: { seeds: {
directory: __dirname + '/db/seeds', directory: __dirname + '/src/db/seeds',
} }
} }