-
-
Save mezis/3f02188772ba75f4ce36d5a9b4db3359 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class TunesFillfactor < ActiveRecord::Migration | |
TABLES = %w[orders restaurant_assignment order_assignment order_item driver zone_metrics] | |
def up | |
TABLES.each do |table| | |
execute %{ALTER TABLE #{table} SET (fillfactor = 85)} | |
end | |
end | |
def down | |
TABLES.each do |table| | |
execute %{ | |
ALTER TABLE #{table} SET (fillfactor = 100) | |
} | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment