Files
openfoodnetwork/app/models/custom_tab.rb
2023-08-11 10:14:47 +10:00

8 lines
158 B
Ruby

# frozen_string_literal: false
class CustomTab < ApplicationRecord
belongs_to :enterprise
validates :title, presence: true, length: { maximum: 20 }
end