PythonCoderAS
PythonCoderAS
Wow this is a really horrible way to protest something. What a child. Edit: For the people disliking my comment, I cannot think of a faster way to evaporate all...
> @RPGillespie6 see [#285 (comment)](https://github.com/Marak/colors.js/issues/285#issuecomment-1008168237) > > @nebulade not really, see https://diff.intrinsic.com/colors/1.4.1/1.4.2. He added another loop to colors/safe, pobably because he oversaw this. > > reference: [#285 (comment)](https://github.com/Marak/colors.js/issues/285#issuecomment-1008357669) Wow he...
> In my opinion former maintainer is irrelevant now, better focus on reducing damage. While bigger projects already fixed or fixing this issue, multiple smaller package maintainers having hard time...
> [He wanted to be paid for his work](http://web.archive.org/web/20210704022108/https://github.com/Marak/faker.js/issues/1046). _If you don't like this commit, don't use my package. My software comes with no warranty_ could be his defence. The...
This is not a jishaku bug. I just tested this by spinning up a fresh venv and testing it. What it seems to be is that your package manager (apt...
I fixed this by manually modifying the SQL to: ```sql -- upgrade -- CREATE TABLE IF NOT EXISTS "argument" ( "id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" VARCHAR(2000) NOT...
> So which db? This is for an SQLite database.
@spacemanspiff2007 one option you have is editing the generated SQL migration manually. `aerich upgrade` does not do any integrity checks, so it'll read the migration code verbatim. I use this...
According to [sqlite documentation](https://www.sqlite.org/lang_altertable.html#alter_table_drop_column), you would want something like `ALTER TABLE DROP COLUMN `.
I also have this problem, but I'm going from a bigint to a normal int.