Remove "string" column from "ppid" table

This was added by accident in 4e18f3849d.

closes #7598
This commit is contained in:
Benjamin Neff 2017-08-28 01:21:25 +02:00
parent 4c967903fe
commit 028199a6f3
No known key found for this signature in database
GPG key ID: 971464C3F1A90194

View file

@ -0,0 +1,7 @@
# frozen_string_literal: true
class RemoveStringColumnFromPpid < ActiveRecord::Migration[5.1]
def change
remove_column :ppid, :string, :string, limit: 32
end
end