MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / __init__

Method __init__

lib/sqlalchemy/sql/ddl.py:508–515  ·  view source on GitHub ↗

Create a new :class:`.CreateSchema` construct.

(
        self,
        name: str,
        if_not_exists: bool = False,
    )

Source from the content-addressed store, hash-verified

506 stringify_dialect = "default"
507
508 def __init__(
509 self,
510 name: str,
511 if_not_exists: bool = False,
512 ) -> None:
513 """Create a new :class:`.CreateSchema` construct."""
514
515 super().__init__(element=name, if_not_exists=if_not_exists)
516
517
518class DropSchema(_DropBase[str]):

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected