2020-07-10 12:05:55 +03:00
|
|
|
# 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
|