Files
paperless-ngx/src/documents/migrations
Daniel Quinn 8bc2dfe4c6 Django migrations doesn't account for PostgreSQL completely
This was a weird bug to run into.  Basically I changed a CharField into
a ForeignKey field and ran `makemigrations` to get the job done.
However, rather than doing a `RemoveField` and an `AddField`, migrations
created a single `AlterField` which worked just fine in SQLite, but blew
up in PostgreSQL with:

    psycopg2.ProgrammingError: operator class "varchar_pattern_ops" does
    not accept data type integer

The fix was to rewrite the single migration into the two separate steps.
2017-02-18 17:55:52 +00:00
..
2015-12-20 19:23:33 +00:00
2017-02-18 17:53:43 +00:00
2016-01-23 04:40:35 +00:00
2016-02-27 20:18:50 +00:00
#76
2016-03-07 10:12:55 +00:00