discourse/db/migrate/20130610201033_add_reply_ke...

7 lines
175 B
Ruby
Raw Normal View History

class AddReplyKeyToEmailLogs < ActiveRecord::Migration
def change
add_column :email_logs, :reply_key, :string, limit: 32
add_index :email_logs, :reply_key
end
end