Sha256: ff851179bd5d706b16f77d9083c3f29bfd64640820a6c97695a2272f173bcfe0
Contents?: true
Size: 502 Bytes
Versions: 47
Compression:
Stored size: 502 Bytes
Contents
# frozen_string_literal: true require 'valkyrie/persistence/postgres/orm/resource' module Valkyrie::Persistence::Postgres # Namespace for ActiveRecord access in Postgres adapter. module ORM # Provides the name prefix for the ActiveRecord database table name # (Maps to the data model for persistence) # @see https://api.rubyonrails.org/classes/ActiveRecord/ModelSchema.html#method-c-table_name_prefix # @return [String] def self.table_name_prefix 'orm_' end end end
Version data entries
47 entries across 47 versions & 1 rubygems