Switch to python3
This commit is contained in:
parent
531041e89a
commit
9ba4b6a91a
5286 changed files with 677347 additions and 576888 deletions
62
Linux_i686/lib/python3.4/site-packages/sqlalchemy/schema.py
Normal file
62
Linux_i686/lib/python3.4/site-packages/sqlalchemy/schema.py
Normal file
|
|
@ -0,0 +1,62 @@
|
|||
# schema.py
|
||||
# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
|
||||
# <see AUTHORS file>
|
||||
#
|
||||
# This module is part of SQLAlchemy and is released under
|
||||
# the MIT License: http://www.opensource.org/licenses/mit-license.php
|
||||
|
||||
"""Compatibility namespace for sqlalchemy.sql.schema and related.
|
||||
|
||||
"""
|
||||
|
||||
from .sql.base import (
|
||||
SchemaVisitor
|
||||
)
|
||||
|
||||
|
||||
from .sql.schema import (
|
||||
CheckConstraint,
|
||||
Column,
|
||||
ColumnDefault,
|
||||
Constraint,
|
||||
DefaultClause,
|
||||
DefaultGenerator,
|
||||
FetchedValue,
|
||||
ForeignKey,
|
||||
ForeignKeyConstraint,
|
||||
Index,
|
||||
MetaData,
|
||||
PassiveDefault,
|
||||
PrimaryKeyConstraint,
|
||||
SchemaItem,
|
||||
Sequence,
|
||||
Table,
|
||||
ThreadLocalMetaData,
|
||||
UniqueConstraint,
|
||||
_get_table_key,
|
||||
ColumnCollectionConstraint,
|
||||
)
|
||||
|
||||
|
||||
from .sql.naming import conv
|
||||
|
||||
|
||||
from .sql.ddl import (
|
||||
DDL,
|
||||
CreateTable,
|
||||
DropTable,
|
||||
CreateSequence,
|
||||
DropSequence,
|
||||
CreateIndex,
|
||||
DropIndex,
|
||||
CreateSchema,
|
||||
DropSchema,
|
||||
_DropView,
|
||||
CreateColumn,
|
||||
AddConstraint,
|
||||
DropConstraint,
|
||||
DDLBase,
|
||||
DDLElement,
|
||||
_CreateDropBase,
|
||||
_DDLCompiles
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue