Changes between Initial Version and Version 2 of Ticket #30511
- Timestamp:
- May 27, 2019, 1:32:28 AM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #30511
- Property Cc added
- Property Summary AutoField with postgres10/11 as generated identity → AutoField with postgres10/11 as generated identity.
- Property Version 2.2 → master
-
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