mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 21:10:17 +08:00
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
|