tap/app/models/barcode.rb
2016-02-02 14:42:02 +01:00

20 lines
407 B
Ruby

# == Schema Information
#
# Table name: barcodes
#
# id :integer not null, primary key
# product_id :integer
# code :string default(""), not null
# created_at :datetime
# updated_at :datetime
#
class Barcode < ActiveRecord::Base
include FriendlyId
friendly_id :code, use: :finders
belongs_to :product
validates :code, presence: true, uniqueness: true
end