Changes between Version 4 and Version 5 of Ticket #9682, comment 15
- Timestamp:
- Sep 20, 2015, 6:24:02 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #9682, comment 15
v4 v5 33 33 There's probably a way to do this via Django's DDL support at `CREATE TABLE` time or via a schema migration, but I'll leave that to people who know Django. 34 34 35 One warning, though: PostgreSQL doesn't ''yet'' support using case-insensitive collations to do equality tests. It uses them for actual collation, but doesn't let you say "if the collation sees them as the same for ordering treat them as equal even if they aren't really the same value". 36 35 37 ''(I don't use Django, I contribute to PostgreSQL and I'm here because of some research I was doing for a Stack Overflow user who runs Django on Pg - http://stackoverflow.com/q/32684946/398670)''.