Sha256: 74c56f2f35eac8c5f5ca62d6774b6e37bdae14642ec0fc88b3c930e6695cfed0
Contents?: true
Size: 403 Bytes
Versions: 73
Compression:
Stored size: 403 Bytes
Contents
# frozen_string_literal: true module ActiveRecord module ConnectionAdapters module SQLite3 class SchemaCreation < AbstractAdapter::SchemaCreation # :nodoc: private def add_column_options!(sql, options) if options[:collation] sql << " COLLATE \"#{options[:collation]}\"" end super end end end end end
Version data entries
73 entries across 73 versions & 7 rubygems