summaryrefslogtreecommitdiff
path: root/db/migrate/20210208161207_add_notes_create_limit_to_application_settings.rb
blob: 4468da77e6c0f69cfe81af712ece87aee0fe3eb2 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

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

  def change
    add_column :application_settings, :notes_create_limit, :integer, default: 300, null: false
  end
end