20170426135500_add_reply_to.rb 223 B

123456789
  1. class AddReplyTo < ActiveRecord::Migration[4.2]
  2. def up
  3. # return if it's a new setup
  4. return if !Setting.find_by(name: 'system_init_done')
  5. add_column :ticket_articles, :reply_to, :string, limit: 300
  6. end
  7. end