1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-08 04:09:53 +00:00
discourse/db/migrate/20170728054115_remove_public_from_groups.rb

10 lines
229 B
Ruby
Raw Normal View History

class RemovePublicFromGroups < ActiveRecord::Migration[4.2]
def up
# Defer dropping of the columns until the new application code has been deployed.
end
def down
raise ActiveRecord::IrreversibleMigration
end
end