From 028199a6f352b9b20bd72b3f514241cb0fcd1e6b Mon Sep 17 00:00:00 2001 From: Benjamin Neff Date: Mon, 28 Aug 2017 01:21:25 +0200 Subject: [PATCH] Remove "string" column from "ppid" table This was added by accident in 4e18f3849dcc5d36bda93e68b597b869735d5517. closes #7598 --- .../20170827231800_remove_string_column_from_ppid.rb | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 db/migrate/20170827231800_remove_string_column_from_ppid.rb diff --git a/db/migrate/20170827231800_remove_string_column_from_ppid.rb b/db/migrate/20170827231800_remove_string_column_from_ppid.rb new file mode 100644 index 000000000..019fda827 --- /dev/null +++ b/db/migrate/20170827231800_remove_string_column_from_ppid.rb @@ -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