summaryrefslogtreecommitdiff
path: root/db/migrate/20150328132231_add_max_attachment_size_to_application_settings.rb
blob: 1d161674a9a90a5a285e0545dd557d756a3872e8 (plain)
1
2
3
4
5
class AddMaxAttachmentSizeToApplicationSettings < ActiveRecord::Migration
  def change
    add_column :application_settings, :max_attachment_size, :integer, default: 10, null: false
  end
end