summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/dialects/postgresql/base.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sqlalchemy/dialects/postgresql/base.py')
-rw-r--r--lib/sqlalchemy/dialects/postgresql/base.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/sqlalchemy/dialects/postgresql/base.py b/lib/sqlalchemy/dialects/postgresql/base.py
index bc8cff905..97108b3cb 100644
--- a/lib/sqlalchemy/dialects/postgresql/base.py
+++ b/lib/sqlalchemy/dialects/postgresql/base.py
@@ -340,12 +340,6 @@ class PGDDLCompiler(compiler.DDLCompiler):
colspec += " NOT NULL"
return colspec
- def visit_create_sequence(self, create):
- return "CREATE SEQUENCE %s" % self.preparer.format_sequence(create.element)
-
- def visit_drop_sequence(self, drop):
- return "DROP SEQUENCE %s" % self.preparer.format_sequence(drop.element)
-
def visit_enum_constraint(self, constraint):
if not constraint.type.native_enum:
return super(PGDDLCompiler, self).visit_enum_constraint(constraint)