mirror of
https://github.com/Hopiu/django.git
synced 2026-04-19 22:41:09 +00:00
Alphabetized classes in contrib.postgres.operations.
This commit is contained in:
parent
094d630ae8
commit
cf0b402518
1 changed files with 8 additions and 8 deletions
|
|
@ -23,6 +23,12 @@ class CreateExtension(Operation):
|
|||
return "Creates extension %s" % self.name
|
||||
|
||||
|
||||
class BtreeGinExtension(CreateExtension):
|
||||
|
||||
def __init__(self):
|
||||
self.name = 'btree_gin'
|
||||
|
||||
|
||||
class CITextExtension(CreateExtension):
|
||||
|
||||
def __init__(self):
|
||||
|
|
@ -42,19 +48,13 @@ class HStoreExtension(CreateExtension):
|
|||
register_hstore_handler(schema_editor.connection)
|
||||
|
||||
|
||||
class UnaccentExtension(CreateExtension):
|
||||
|
||||
def __init__(self):
|
||||
self.name = 'unaccent'
|
||||
|
||||
|
||||
class TrigramExtension(CreateExtension):
|
||||
|
||||
def __init__(self):
|
||||
self.name = 'pg_trgm'
|
||||
|
||||
|
||||
class BtreeGinExtension(CreateExtension):
|
||||
class UnaccentExtension(CreateExtension):
|
||||
|
||||
def __init__(self):
|
||||
self.name = 'btree_gin'
|
||||
self.name = 'unaccent'
|
||||
|
|
|
|||
Loading…
Reference in a new issue