Matthew Peveler
Matthew Peveler
insert will only function when operating in the up directory and will throw in the down direction regardless of if you wrap it in a `if (!isMigrationUp())` block or otherwise...
Can you share a migration that creates a trigger and statistic, as well as the migration that has the issue?
I'm not super familiar with this feature of mysql, but could you set the algorithm and lock for other operations when altering a table, like adding or removing an index?
When I put out the next version with this PR, I will include in the notes on updating the phinxlog column types manually for those on older versions. I agree...
To support RDS Postgres, you just need to get a valid `credentials` object which has an `accessKeyId` and `secretAccessKey` (optionally also `sessionToken`), or can use the [`@aws-sdk/credential-provider-ini`](https://www.npmjs.com/package/@aws-sdk/credential-provider-ini) package (or the...
The `fromNodeProviderChain` function returns a variable with the type signature `() => Promise` (which is also `CredentialsProvider` in `@types/aws`) so the expectation is that `Signer` _should_ be calling it.
Since the `Signer` class doesn't actually make any HTTP calls, it should be possible to easily validate your approach works via the REPL: ``` > const { fromNodeProviderChain } =...
I think that instead of having additional methods, should just add a new parameter to the `insert` method, `bool|string $skipOrUpdate = false`, where if: * `false`, then do the current...