Changes between Initial Version and Version 1 of Ticket #18392, comment 26
- Timestamp:
- Nov 12, 2015, 8:17:22 AM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #18392, comment 26
initial v1 1 For a first step, I propose a asetting in DATABASES OPTIONS that tells Django the maximum index size to use when creating new indexes. I think it should default to 191. That way Django won't ever reduce the size of existing indexes, only new indexes.1 For a first step, I propose a setting in DATABASES OPTIONS that tells Django the maximum index size to use when creating new indexes. I think it should default to 191. That way Django won't ever reduce the size of existing indexes, only new indexes. 2 2 3 If we have that setting s, it's at least _possible_ to use utf8mb4. We could then down the road have Django try to default to using utf8mb4 encoding for new databases/tables/columns.3 If we have that setting, it's at least _possible_ to use utf8mb4. We could then down the road have Django try to default to using utf8mb4 encoding for new databases/tables/columns. 4 4 5 5 (We need this for #20846.)