2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-08-31 00:06:56 -04:00
|
|
|
class FixTopicAllowedGroups < ActiveRecord::Migration[4.2]
|
2013-05-02 01:15:17 -04:00
|
|
|
def change
|
|
|
|
# big oops
|
2019-09-11 20:41:50 -04:00
|
|
|
remove_column :topic_allowed_groups, :integer if column_exists?(:topic_allowed_groups, :integer)
|
2013-05-02 01:15:17 -04:00
|
|
|
end
|
|
|
|
end
|