class ActiveRecord::ConnectionAdapters::SQLite3::TableDefinition

Active Record SQLite3 Adapter Table Definition

def change_column(column_name, type, **options)

def change_column(column_name, type, **options)
  name = column_name.to_s
  @columns_hash[name] = nil
  column(name, type, **options)
end

def integer_like_primary_key_type(type, options)

def integer_like_primary_key_type(type, options)
  :primary_key
end

def references(*args, **options)

def references(*args, **options)
  super(*args, type: :integer, **options)
end