Skip to content

Commit

Permalink
Merge pull request #4251 from cielf/restore_donation_sites
Browse files Browse the repository at this point in the history
Restoring donation sites to being active.  Mea culpa.
  • Loading branch information
cielf authored Apr 4, 2024
2 parents e0457da + 02be000 commit 36f1d85
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions db/migrate/20240402230156_restore_donation_sites.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
class RestoreDonationSites < ActiveRecord::Migration[7.0]
def up
DonationSite.all.each do |site|
site.update!(active: true)
end
end

def down

end
end

0 comments on commit 36f1d85

Please sign in to comment.