diff options
Diffstat (limited to 'db/tag.rb')
-rw-r--r-- | db/tag.rb | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/db/tag.rb b/db/tag.rb deleted file mode 100644 index 7f3446c..0000000 --- a/db/tag.rb +++ /dev/null @@ -1,26 +0,0 @@ -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 |