summaryrefslogtreecommitdiff
path: root/db/migrate/20190911115056_add_projects_max_pages_size.rb
blob: 70812e31ab8edd59a6409525871572b042f44d49 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddProjectsMaxPagesSize < ActiveRecord::Migration[5.2]
  DOWNTIME = false

  def change
    add_column :projects, :max_pages_size, :integer # rubocop:disable Migration/AddColumnsToWideTables
  end
end