diaspora/db/migrate/20160307142216_cleanup_handles.rb
2017-08-12 15:39:26 +02:00

7 lines
229 B
Ruby

class CleanupHandles < ActiveRecord::Migration[4.2]
def change
remove_column :photos, :tmp_old_id, :integer
remove_column :photos, :diaspora_handle, :string
remove_column :posts, :diaspora_handle, :string
end
end