Files

15 lines
288 B
Ruby
Raw Permalink Normal View History

2026-06-12 15:40:12 -04:00
# encoding: utf-8
class LocalNetwork < ActiveRecord::Base
# attr_accessible :title, :body
# validates :title, :presence => true
# validates :body, :presence => true
has_many :machines
# # belongs_to :someotherthing
# scope :published, -> { order("created_at DESC") }
end