Silly read only databases...

This commit is contained in:
2026-07-27 18:32:56 -06:00
parent 2a4e1c5026
commit 0172c86958
10 changed files with 95 additions and 2 deletions
+10
View File
@@ -0,0 +1,10 @@
class JointsDashboard < ApplicationRecord
self.table_name = "Joints"
# Prevent actidental updates from code:
def readonly?
true
end
end