Soc/app/models/tag.rb

8 lines
177 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class Tag < ApplicationRecord
validates :name, presence: true
2023-10-19 17:35:48 +00:00
has_many :microposts_tags
has_many :microposts, through: :microposts_tags
end