class ActiveRecord::ConnectionAdapters::SQLite3Adapter::SQLite3Integer

:nodoc:

def _limit

def _limit
  # INTEGER storage class can be stored 8 bytes value.
  # See https://www.sqlite.org/datatype3.html#storage_classes_and_datatypes
  limit || 8
end