summaryrefslogtreecommitdiff
path: root/db/migrate/20190911115056_add_projects_max_pages_size.rb
blob: 175c66953ed8a87f731bf1e0203babf478dec5b7 (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
  end
end