diaspora/db/migrate/20170827231800_remove_string_column_from_ppid.rb
Benjamin Neff 028199a6f3
Remove "string" column from "ppid" table
This was added by accident in 4e18f3849d.

closes #7598
2017-09-18 03:21:41 +02:00

7 lines
171 B
Ruby

# frozen_string_literal: true
class RemoveStringColumnFromPpid < ActiveRecord::Migration[5.1]
def change
remove_column :ppid, :string, :string, limit: 32
end
end