lib/sequel/adapters/shared/mysql.rb in sequel-3.36.1 vs lib/sequel/adapters/shared/mysql.rb in sequel-3.37.0
- old
+ new
@@ -367,14 +367,9 @@
else
super
end
end
- # MySQL treats integer primary keys as autoincrementing.
- def schema_autoincrementing_primary_key?(schema)
- super and schema[:db_type] =~ /int/io
- end
-
# Use the MySQL specific DESCRIBE syntax to get a table description.
def schema_parse_table(table_name, opts)
m = output_identifier_meth(opts[:dataset])
im = input_identifier_meth(opts[:dataset])
table = SQL::Identifier.new(im.call(table_name))