Remove old ln columns from users table
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing

This commit is contained in:
2025-05-06 19:47:58 +04:00
parent 931624cf95
commit 84ed4b2de2
2 changed files with 7 additions and 3 deletions

View File

@@ -0,0 +1,6 @@
class RemoveLnFieldsFromUsers < ActiveRecord::Migration[8.0]
def change
remove_column :users, :ln_account
remove_column :users, :ln_password_ciphertext
end
end