summaryrefslogtreecommitdiff
path: root/db/migrate/20200730131946_add_hide_lists_to_boards.rb
blob: e431ea852a775ec875c0186919b8a864abba2207 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

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

  def change
    add_column :boards, :hide_backlog_list, :boolean, default: false, null: false
    add_column :boards, :hide_closed_list, :boolean, default: false, null: false
  end
end