aboutsummaryrefslogtreecommitdiff
path: root/models/tag.rb
blob: 9c24b6cadaf9464caa37df109725407b1bb4cc34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
class PostTagLink < ActiveRecord::Base
  belongs_to :post
  belongs_to :tag
end

class CreatePostTagLinkTable < ActiveRecord::Migration[6.0]
  def change
    create_table :post_tag_links do |t|
      t.references :post, foreign_key: true, index: true
      t.references :tag, foreign_key: true, index: true
    end
  end
end

class Tag < ActiveRecord::Base
  belongs_to :post
  validates_presence_of :name
end

class CreateTagTable < ActiveRecord::Migration[6.0]
  def change
    create_table :tags do |t|
      t.string :name, null: false
    end
  end
end