From 8a0d78fbf448ed607e0a48973d936ceed79ad43e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20Ankarstr=C3=B6m?= Date: Mon, 1 Mar 2021 22:02:18 +0100 Subject: Add ActiveRecord models and migrations --- db/comment.rb | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 db/comment.rb (limited to 'db/comment.rb') diff --git a/db/comment.rb b/db/comment.rb new file mode 100644 index 0000000..b3977f6 --- /dev/null +++ b/db/comment.rb @@ -0,0 +1,20 @@ +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 -- cgit v1.2.3