Drop creation_ip column

This commit is contained in:
Tom Hughes 2024-09-13 18:23:50 +01:00
parent e8029e2aff
commit 28650d4dfb
2 changed files with 6 additions and 1 deletions

View file

@ -0,0 +1,5 @@
class DropUserCreationIp < ActiveRecord::Migration[7.1]
def change
safety_assured { remove_column :users, :creation_ip, :string }
end
end