mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 10:20:58 -06:00
10 lines
224 B
Ruby
10 lines
224 B
Ruby
class RemovePublicFromGroups < ActiveRecord::Migration
|
|
def up
|
|
# Defer dropping of the columns until the new application code has been deployed.
|
|
end
|
|
|
|
def down
|
|
raise ActiveRecord::IrreversibleMigration
|
|
end
|
|
end
|