discourse/db/migrate/20200327164420_add_imap_stats_to_group.rb
Dan Ungureanu c72bc27888
FEATURE: Implement support for IMAP and SMTP email protocols. (#8301)
Co-authored-by: Joffrey JAFFEUX <j.jaffeux@gmail.com>
2020-07-10 12:05:55 +03:00

10 lines
261 B
Ruby

# frozen_string_literal: true
class AddImapStatsToGroup < ActiveRecord::Migration[6.0]
def change
add_column :groups, :imap_last_error, :text
add_column :groups, :imap_old_emails, :integer
add_column :groups, :imap_new_emails, :integer
end
end