diff options
author | John Ankarström <john@ankarstrom.se> | 2021-03-02 00:10:03 +0100 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2021-03-02 00:10:03 +0100 |
commit | 7640f27b9e183c6e9a00249c352e3515d3f90c75 (patch) | |
tree | e58d598bbaa577b541559b9bd0380ba2d4665264 /db/post.rb | |
parent | 4e18684bb21564ee1d9c616b9cf1eece3a241f8c (diff) | |
download | comb-7640f27b9e183c6e9a00249c352e3515d3f90c75.tar.gz |
Rename db directory to models
Diffstat (limited to 'db/post.rb')
-rw-r--r-- | db/post.rb | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/db/post.rb b/db/post.rb deleted file mode 100644 index 1d44051..0000000 --- a/db/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 |