debian-mirror-gitlab/db/migrate/20200410104828_add_comment_detail_to_services.rb
2020-05-24 23:13:21 +05:30

14 lines
250 B
Ruby

# 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