Remove "string" column from "ppid" table
This was added by accident in 4e18f3849d.
closes #7598
This commit is contained in:
parent
4c967903fe
commit
028199a6f3
1 changed files with 7 additions and 0 deletions
|
|
@ -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
|
||||
Loading…
Reference in a new issue