From 8d21b802c35d5b1f8e6e868aaa20c1c0066275c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20Ankarstr=C3=B6m?= Date: Tue, 2 Mar 2021 00:41:56 +0100 Subject: Add new interfaces tree, remake database code as 'ruby' interface This follows the directory structure outlined in my previous commit message. --- models/post.rb | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 models/post.rb (limited to 'models/post.rb') diff --git a/models/post.rb b/models/post.rb deleted file mode 100644 index 1d44051..0000000 --- a/models/post.rb +++ /dev/null @@ -1,18 +0,0 @@ -class Post < ActiveRecord::Base - has_many :comments - has_many :tags, through: :post_tag_links - - validates_presence_of :title - validates_presence_of :body -end - -class CreatePostTable < ActiveRecord::Migration[6.0] - def change - create_table :posts do |t| - t.string :title, null: false - t.string :body, null: false - t.boolean :locked, default: false - t.timestamps - end - end -end -- cgit v1.2.3