knex-db-manager icon indicating copy to clipboard operation
knex-db-manager copied to clipboard

Utility for create, drop, truncate etc. administrative database operations.

Results 12 knex-db-manager issues
Sort by recently updated
recently updated
newest added

would it be possible to update the knex dependency to v2

Hello - I've been looking to use this on a client project however the RDS in use is MySQL 8 which results in this error: ``` Error: ER_NOT_SUPPORTED_AUTH_MODE: Client does...

The encoding is hard coded to 'utf8', which can cause a `ER_COLLATION_CHARSET_MISMATCH` error. As 'utf8' is not compatible with a number of collations, e.g. the utf8mb4 variants, some of the...

Hi - thanks for the package. When I'm trying to truncate I get the error cannot truncate a table referenced in a foreign key constraint. Is there any way to...

Hey there, Knex has support for UNIX sockets when `socketPath` is supplied to the `connection: {}` object. The logic behind it is pretty straightforward, when `socketPath` is detected it ignores...

# The problem In Knex, it is possible to define the connection as a single database URL, like: ```js { client: 'pg', connection: 'postgres://user:password@localhost:5432/database', }; ``` This is not supported...

Hi, Have been using this package for awhile but recently started using it for seed files. I've noticed that populateDb looks for a glob pattern of files, requires those files,...

Apologies for the barrage of `truncateDb` bugs! After applying my workaround, I was able to bypass #83. I ran the command in Ubuntu and I was able to get the...

I am using `knex-db-manager`'s `truncateDb` method to remove data after every test. I noticed that when used in conjunction with Objection's [`knexSnakeCaseMappers`](https://vincit.github.io/objection.js/api/objection/#knexsnakecasemappers), `truncateDb` does not actually do anything! I believe...