Sha256: ce99c502c9d3c87285c1ce7798fcc59bf2681ee0c8d325e7e89796b432a8277d

Contents?: true

Size: 379 Bytes

Versions: 3

Compression:

Stored size: 379 Bytes

Contents

# Copyright 2021 Google LLC
#
# Use of this source code is governed by an MIT-style
# license that can be found in the LICENSE file or at
# https://opensource.org/licenses/MIT.

# frozen_string_literal: true

require "models/album"

class AlbumPartialDisabled < Album
  self.table_name = :albums

  if ActiveRecord::VERSION::MAJOR >= 7
    self.partial_inserts = false
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
activerecord-spanner-adapter-1.4.1 acceptance/models/album_partial_disabled.rb
activerecord-spanner-adapter-1.4.0 acceptance/models/album_partial_disabled.rb
activerecord-spanner-adapter-1.3.1 acceptance/models/album_partial_disabled.rb