summaryrefslogtreecommitdiff
path: root/db/post_migrate/20200727114147_remove_title_and_description_from_services.rb
blob: 0c908e174384104d6d1d6bf6f0e5f7fcf8b7d94f (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

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

  def change
    remove_column :services, :title, :string
    remove_column :services, :description, :string, limit: 500
  end
end