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/comment.rb | 20 -------------------- models/config.rb | 17 ----------------- models/post.rb | 18 ------------------ models/tag.rb | 26 -------------------------- 4 files changed, 81 deletions(-) delete mode 100644 models/comment.rb delete mode 100644 models/config.rb delete mode 100644 models/post.rb delete mode 100644 models/tag.rb (limited to 'models') diff --git a/models/comment.rb b/models/comment.rb deleted file mode 100644 index b3977f6..0000000 --- a/models/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 diff --git a/models/config.rb b/models/config.rb deleted file mode 100644 index 55b4106..0000000 --- a/models/config.rb +++ /dev/null @@ -1,17 +0,0 @@ -class Config < ActiveRecord::Base - self.table_name = 'config' - validates_presence_of :title - validates_presence_of :timezone - validates_presence_of :postsperpage -end - -class CreateConfigTable < ActiveRecord::Migration[6.0] - def change - create_table :config do |t| - t.string :title, null: false - t.string :subtitle - t.string :timezone, null: false - t.integer :postsperpage, null: false - end - end -end 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 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 -- cgit v1.2.3