mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-10 22:11:54 +08:00
* adding missing db.backends typings and updated test * added missing stubs * reformatted files * removed contrib.postgres.forms * fixed test
11 lines
362 B
Python
11 lines
362 B
Python
from django.db.backends.postgresql.schema import DatabaseSchemaEditor
|
|
from typing import Any
|
|
|
|
class PostGISSchemaEditor(DatabaseSchemaEditor):
|
|
geom_index_type: str = ...
|
|
geom_index_ops_nd: str = ...
|
|
rast_index_wrapper: str = ...
|
|
sql_alter_column_to_3d: str = ...
|
|
sql_alter_column_to_2d: str = ...
|
|
def geo_quote_name(self, name: Any): ...
|