mirror of
https://github.com/discourse/discourse.git
synced 2025-02-08 12:24:55 +00:00
10 lines
218 B
Ruby
10 lines
218 B
Ruby
|
class RemoveS3ForcePathStyle < ActiveRecord::Migration[5.2]
|
||
|
def up
|
||
|
execute "DELETE FROM site_settings WHERE name = 's3_force_path_style'"
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
raise ActiveRecord::IrreversibleMigration
|
||
|
end
|
||
|
end
|