aboutsummaryrefslogtreecommitdiff
path: root/db/comment.rb
diff options
context:
space:
mode:
authorJohn Ankarström <john@ankarstrom.se>2021-03-02 00:10:03 +0100
committerJohn Ankarström <john@ankarstrom.se>2021-03-02 00:10:03 +0100
commit7640f27b9e183c6e9a00249c352e3515d3f90c75 (patch)
treee58d598bbaa577b541559b9bd0380ba2d4665264 /db/comment.rb
parent4e18684bb21564ee1d9c616b9cf1eece3a241f8c (diff)
downloadcomb-7640f27b9e183c6e9a00249c352e3515d3f90c75.tar.gz
Rename db directory to models
Diffstat (limited to 'db/comment.rb')
-rw-r--r--db/comment.rb20
1 files changed, 0 insertions, 20 deletions
diff --git a/db/comment.rb b/db/comment.rb
deleted file mode 100644
index b3977f6..0000000
--- a/db/comment.rb
+++ /dev/null
@@ -1,20 +0,0 @@
-class Comment < ActiveRecord::Base
- belongs_to :post
- validates_presence_of :date
- validates_presence_of :author
- validates_presence_of :email
- validates_format_of :email, with: /@/
- validates_presence_of :body
-end
-
-class CreateCommentTable < ActiveRecord::Migration[6.0]
- def change
- create_table :comments do |t|
- t.references :post, foreign_key: true, index: true
- t.string :author, null: false
- t.string :email, null: false
- t.string :body, null: false
- t.timestamps
- end
- end
-end