Matthew Peveler
Matthew Peveler
You'd want to use the [`changeColumn`](https://book.cakephp.org/phinx/0/en/migrations.html#changing-column-attributes) method . Assuming you're trying to change the default primary key that's created: ``` ->changeColumn('id', 'integer', ['identity' => true, 'signed' => true]) ``` Before:...
I guess add a note to it in the link I posted for this? I don't know another place that'd really fit.
You should be able to use a `\Phinx\Util\Literal` for a default, and then when phinx does the migration it'll just take that value as-is. See https://book.cakephp.org/phinx/0/en/migrations.html#custom-column-types-default-values for more info.
To confirm, you're using the `->insert` method to try to add 483,236 data rows at once?
I feel like it might be useful to have some indicator on each anonymous post to allow tying them together within a given thread over several authors. Like, could imagine...
I'm unable to reproduce locally. Is `.tldr.complete` a proper copy of `complete.zsh`?
Relevant page: https://github.com/tldr-pages/tldr/blob/main/pages/linux/scriptreplay.md What OS / distro are you on?
The C client will only look for a page for your current OS + common if you don't specify the `--platform` flag. The [client spec](https://github.com/tldr-pages/tldr/blob/main/CLIENT-SPECIFICATION.md) does recommend this however: >...
Yeah, right now the update process is very "dumb" where it doesn't do any sort of check to see if the remote archive has been changed at all since the...
What version of `termcolor` and `colorama` do you have? It may be that the program has broken on an older or newer version of those programs than what we test...