diff options
author | John Ankarström <john@ankarstrom.se> | 2021-03-02 00:41:56 +0100 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2021-03-02 00:41:56 +0100 |
commit | 8d21b802c35d5b1f8e6e868aaa20c1c0066275c9 (patch) | |
tree | 7bd3d732d6435d3aa826f1585a5b0a137526fa7f /models/post.rb | |
parent | 469a4c2424a684524a8323a8a1a3727e1b6a4ed7 (diff) | |
download | comb-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/post.rb')
-rw-r--r-- | models/post.rb | 18 |
1 files changed, 0 insertions, 18 deletions
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 |