summaryrefslogtreecommitdiff
path: root/migrate/changeset/schema.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2019-01-16 15:54:39 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2019-01-18 13:11:40 -0500
commitfe646671060815ff865e49b52d957c7f01220597 (patch)
tree170499cfac9a0c6dcf3653f33c198fbe7ca90752 /migrate/changeset/schema.py
parent8fd7226f186427d8f005c00ca155322f2f72078b (diff)
downloadsqlalchemy-migrate-fe646671060815ff865e49b52d957c7f01220597.tar.gz
Don't use deprecated / non-functional "force" parameter
The "force" parameter in SQLAlchemy IdentifierPreparer.quote() has been a no-op since 0.9 in https://github.com/sqlalchemy/sqlalchemy/commit/031ef0807838842a827135dbace760da7aec215e, which was six years ago. In SQLAlchemy 1.3 this parameter will be removed entirely. Bump requirements to 0.9 series here and remove usage of the "force" flag. Change-Id: I4492df2e7d2075fefbf13d6782de11f7d402f6b8
Diffstat (limited to 'migrate/changeset/schema.py')
-rw-r--r--migrate/changeset/schema.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/migrate/changeset/schema.py b/migrate/changeset/schema.py
index 931ef7b..f4b8f4c 100644
--- a/migrate/changeset/schema.py
+++ b/migrate/changeset/schema.py
@@ -650,12 +650,10 @@ populated with defaults
# TODO: this is fixed in 0.6
def copy_fixed(self, **kw):
"""Create a copy of this ``Column``, with all attributes."""
- q = util.safe_quote(self)
return sqlalchemy.Column(self.name, self.type, self.default,
key=self.key,
primary_key=self.primary_key,
nullable=self.nullable,
- quote=q,
index=self.index,
unique=self.unique,
onupdate=self.onupdate,