Sha256: 54b29c22af7e66a4933c0ed7cbf513d819dea9186f386fedd3c8d39495b86fd6
Contents?: true
Size: 462 Bytes
Versions: 144
Compression:
Stored size: 462 Bytes
Contents
# frozen_string_literal: true module ActiveRecord module ConnectionAdapters module SQLite3 class TableDefinition < ActiveRecord::ConnectionAdapters::TableDefinition def references(*args, **options) super(*args, type: :integer, **options) end alias :belongs_to :references private def integer_like_primary_key_type(type, options) :primary_key end end end end end
Version data entries
144 entries across 140 versions & 11 rubygems