Currently, the autogeneration template of indexes is non configurable:
|
def _spatial_idx_name(table_name, column_name): |
|
return 'idx_{}_{}'.format(table_name, column_name) |
It would be nice to follow the default conventions established in the metadata if specified, so that it can remain consistent with sqlalchemy.
Currently, the autogeneration template of indexes is non configurable:
geoalchemy2/geoalchemy2/__init__.py
Lines 47 to 48 in 9d89df1
It would be nice to follow the default conventions established in the metadata if specified, so that it can remain consistent with sqlalchemy.