aboutsummaryrefslogtreecommitdiff
path: root/models/tag.rb
diff options
context:
space:
mode:
authorJohn Ankarström <john@ankarstrom.se>2021-03-02 00:41:56 +0100
committerJohn Ankarström <john@ankarstrom.se>2021-03-02 00:41:56 +0100
commit8d21b802c35d5b1f8e6e868aaa20c1c0066275c9 (patch)
tree7bd3d732d6435d3aa826f1585a5b0a137526fa7f /models/tag.rb
parent469a4c2424a684524a8323a8a1a3727e1b6a4ed7 (diff)
downloadcomb-8d21b802c35d5b1f8e6e868aaa20c1c0066275c9.tar.gz
Add new interfaces tree, remake database code as 'ruby' interface
This follows the directory structure outlined in my previous commit message.
Diffstat (limited to 'models/tag.rb')
-rw-r--r--models/tag.rb26
1 files changed, 0 insertions, 26 deletions
diff --git a/models/tag.rb b/models/tag.rb
deleted file mode 100644
index 9c24b6c..0000000
--- a/models/tag.rb
+++ /dev/null
@@ -1,26 +0,0 @@
-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