mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 06:28:11 +08:00
c72bc27888
Co-authored-by: Joffrey JAFFEUX <j.jaffeux@gmail.com>
10 lines
261 B
Ruby
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
|