]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
clean PR
authorasimfarooq5 <asimfarooq5@gmail.com>
Tue, 16 Aug 2022 13:41:06 +0000 (18:41 +0500)
committerasimfarooq5 <asimfarooq5@gmail.com>
Tue, 16 Aug 2022 13:41:06 +0000 (18:41 +0500)
lib/sqlalchemy/dialects/postgresql/base.py

index 90639a481792d925bdfb97b61b9e4c3399fdc248..d7b280f2a3eace0e5b27247d250210a4c930c1e1 100644 (file)
@@ -2428,13 +2428,6 @@ class PGTypeCompiler(compiler.GenericTypeCompiler):
 
     def visit_json_str_index(self, type_, **kw):
         return "TEXT"
-+
-     def visit_MONEY(self, type_, **kw):
-         return "MONEY"
-
-@@ -2447,6 +2461,9 @@ class PGTypeCompiler(compiler.GenericTypeCompiler):
-             (type_.timezone and "WITH" or "WITHOUT") + " TIME ZONE",
-         )
 
     def visit_datetime(self, type_, **kw):
         return self.visit_TIMESTAMP(type_, **kw)