demarches-normaliennes/app/models/zone_label.rb
Christophe Robillard a504e82021 add zone label
2022-09-26 16:58:53 +02:00

14 lines
392 B
Ruby

# == Schema Information
#
# Table name: zone_labels
#
# id :bigint not null, primary key
# designated_on :date not null
# name :string not null
# created_at :datetime not null
# updated_at :datetime not null
# zone_id :bigint not null
#
class ZoneLabel < ApplicationRecord
belongs_to :zone
end