Changes between Initial Version and Version 2 of Ticket #30511
- Timestamp:
- 05/27/19 06:32:28 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #30511
- Property Cc Michael Kany added
-
Property
Version
changed from
2.2
tomaster
-
Property
Summary
changed from
AutoField with postgres10/11 as generated identity
toAutoField with postgres10/11 as generated identity.
-
Ticket #30511 – Description
initial v2 5 5 6 6 Adjustments only in base.py (line 70ff): 7 {{{ 7 8 data_types = { 8 9 'IdentityAutoField': 'integer', 9 10 'IdentityBigAutoField': 'bigint', 10 11 }}} 11 12 and schema.py, def column_sql () (line 178ff): 13 {{{ 12 14 # Primary key / unique outputs 13 15 if field.primary_key: … … 17 19 elif field.unique: 18 20 sql + = "UNIQUE" 19 21 }}} 20 22 I can also send our code 21 23