10 lines
303 B
Ruby
10 lines
303 B
Ruby
|
require_dependency 'issue_2715_fix_broken_twitter_urls_job' # Rails autoloading expects `issue2715_fix...`
|
||
|
|
||
|
class Issue2715FixBrokenTwitterUrls < ActiveRecord::Migration[5.2]
|
||
|
def up
|
||
|
return if !Setting.find_by(name: 'system_init_done')
|
||
|
|
||
|
Issue2715FixBrokenTwitterUrlsJob.perform_later
|
||
|
end
|
||
|
end
|