Sha256: e3ab95162d47e83fd3744432abfd97d574e18811ceb9fbeed8bed8ea124d9c45
Contents?: true
Size: 1.71 KB
Versions: 3
Compression:
Stored size: 1.71 KB
Contents
# frozen_string_literal: true # Copyright 2024 The Cockroach Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. require "active_record/migration" require "active_record/migration/compatibility" module ActiveRecord class Migration module CockroachDB module Compatibility module V7_0Patch # Override. Use "CockroachDB" instead of "PostgreSQL" def compatible_timestamp_type(type, connection) if connection.adapter_name == "CockroachDB" # For Rails <= 6.1, :datetime was aliased to :timestamp # See: https://github.com/rails/rails/blob/v6.1.3.2/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb#L108 # From Rails 7 onwards, you can define what :datetime resolves to (the default is still :timestamp) # See `ActiveRecord::ConnectionAdapters::PostgreSQLAdapter.datetime_type` type.to_sym == :datetime ? :timestamp : type else type end end end end end end end prepend_mod = ActiveRecord::Migration::CockroachDB::Compatibility::V7_0Patch ActiveRecord::Migration::Compatibility::V6_1::PostgreSQLCompat.singleton_class.prepend(prepend_mod)
Version data entries
3 entries across 3 versions & 1 rubygems