Sha256: 8395fd3c22a7e06668c795f2b268dcba13baf3cc8f2a8d8f135deb0e953b3801
Contents?: true
Size: 294 Bytes
Versions: 5
Compression:
Stored size: 294 Bytes
Contents
# frozen_string_literal: true class EssayDestroyAsync < ActiveRecord::Base self.table_name = "essays" belongs_to :book, dependent: :destroy_async, class_name: "BookDestroyAsync" end class LongEssayDestroyAsync < EssayDestroyAsync end class ShortEssayDestroyAsync < EssayDestroyAsync end
Version data entries
5 entries across 5 versions & 1 rubygems