2017-08-31 12:06:56 +08:00
|
|
|
class RemovePublicFromGroups < ActiveRecord::Migration[4.2]
|
2017-07-28 10:37:10 +08:00
|
|
|
def up
|
|
|
|
# Defer dropping of the columns until the new application code has been deployed.
|
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
|
|
|
raise ActiveRecord::IrreversibleMigration
|
|
|
|
end
|
|
|
|
end
|