mirror of
https://github.com/discourse/discourse.git
synced 2025-10-03 17:21:20 +08:00
9 lines
261 B
Ruby
9 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
|