demarches-normaliennes/app/models/zone_label.rb

15 lines
392 B
Ruby
Raw Normal View History

2022-08-11 19:05:12 +02:00
# == 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