aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/warehouse_thing.rb
blob: 684af49f2feaf3cafbb625d2491b5454682e540c (plain) (blame)
1
2
3
4
5
6
# frozen_string_literal: true
class WarehouseThing < ActiveRecord::Base
  self.table_name = "warehouse-things"

  validates_uniqueness_of :value
end