Files
joanna-website/app/models/joints_dashboard.rb
T

11 lines
153 B
Ruby

class JointsDashboard < ApplicationRecord
self.table_name = "Joints"
# Prevent actidental updates from code:
def readonly?
true
end
end