2023-10-19 16:51:32 +00:00
|
|
|
# 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
|
2023-10-19 16:51:32 +00:00
|
|
|
end
|