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