summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/databases/mysql.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sqlalchemy/databases/mysql.py')
-rw-r--r--lib/sqlalchemy/databases/mysql.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/sqlalchemy/databases/mysql.py b/lib/sqlalchemy/databases/mysql.py
index bb6b41d78..c6d78cf90 100644
--- a/lib/sqlalchemy/databases/mysql.py
+++ b/lib/sqlalchemy/databases/mysql.py
@@ -72,11 +72,6 @@ class MSInteger(sqltypes.Integer):
else:
return kw_colspec(self, "INTEGER")
class MSBigInteger(MSInteger):
- def __init__(self, length=None, **kw):
- self.length = length
- self.unsigned = 'unsigned' in kw
- self.zerofill = 'zerofill' in kw
- super(MSBigInteger, self).__init__()
def get_col_spec(self):
if self.length is not None:
return kw_colspec(self, "BIGINT(%(length)s)" % {'length': self.length})