Skip to content

Commit

Permalink
this might be needed.
Browse files Browse the repository at this point in the history
  • Loading branch information
Morgul committed Aug 20, 2023
1 parent f7d2377 commit ac5041a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions knexfile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,12 @@ module.exports = async() =>
...getConfig(),
migrations: {
directory: './src/server/knex/migrations',
extension: 'ts'
extension: 'ts',
loadExtensions: [ '.ts' ]
},
seeds: {
directory: './src/server/knex/seeds'
directory: './src/server/knex/seeds',
loadExtensions: [ '.ts' ]
}
};
};
Expand Down

0 comments on commit ac5041a

Please sign in to comment.