summaryrefslogtreecommitdiff
path: root/db/migrate/20200410104828_add_comment_detail_to_services.rb
blob: 61d993cce3213de4975ac752f571b43001e75f03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

class AddCommentDetailToServices < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  def up
    add_column :services, :comment_detail, :smallint
  end

  def down
    remove_column :services, :comment_detail
  end
end