aboutsummaryrefslogtreecommitdiff
path: root/interfaces/ruby/models/post.rb
blob: 1d440518c07e220ea900c4db4299bec9e96126f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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