Migration to add geocodings.force_all_rows #3958

pull/4407/head
Rafa de la Torre 9 years ago
parent 726cea0024
commit 26f842f765

@ -0,0 +1,11 @@
class AddForceAllRowsToGeocodings < Sequel::Migration
def up
add_column :geocodings, :force_all_rows, :boolean, default: false
end
def down
drop_column :geocodings, :force_all_rows
end
end
Loading…
Cancel
Save