BookingSync/bookingsync_portal

View on GitHub
app/models/bookingsync_portal/photo.rb

Summary

Maintainability
A
0 mins
Test Coverage
class BookingsyncPortal::Photo < ActiveRecord::Base
  self.table_name = 'photos'

  belongs_to :rental
  has_one    :account, through: :rental

  scope :ordered, -> { order position: :asc }
end