mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-02 13:59:16 +08:00
This promotes all post-migrations which existed in `v2026.1` to regular pre-deploy migrations. We do this after each stable/esr release to reduce the probability of pre/post deploy timing issues.
10 lines
219 B
Ruby
10 lines
219 B
Ruby
# frozen_string_literal: true
|
|
class DropImapSyncLogs < ActiveRecord::Migration[8.0]
|
|
def change
|
|
drop_table :imap_sync_logs, if_exists: true
|
|
end
|
|
|
|
def down
|
|
raise ActiveRecord::IrreversibleMigration
|
|
end
|
|
end
|