1 2 3 4 5 6
# frozen_string_literal: true class ProgrammingLanguage < ActiveRecord::Base validates :name, presence: true validates :color, allow_blank: false, color: true end