UnaccentExtension
This class is a specialized database migration operation used to enable the 'unaccent' extension in a PostgreSQL database. It inherits from the base extension creation logic to provide a simple interface for adding accent-insensitive search capabilities to a schema.
Attributes
| Attribute | Type | Description |
|---|---|---|
| name | string = unaccent | The internal name of the PostgreSQL extension to be created, which is hardcoded to 'unaccent'. |
| hints | list or dict = None | Optional metadata or execution instructions passed to the underlying extension creation logic. |
Constructor
Signature
def UnaccentExtension(
hints: list[str]| None = None
) - > null
Parameters
| Name | Type | Description |
|---|---|---|
| hints | `list[str] | None` = None |
Signature
def UnaccentExtension(
hints: list[str] = None
) - > null
Parameters
| Name | Type | Description |
|---|---|---|
| hints | list[str] = None | A list of strings providing additional context or instructions for the extension creation process. |