blob: 7f3446cb1cda0c03e4ee783ce7aeb16d7079c8a2 (
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 < Active::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
|