akkounts/db/migrate/20230223115536_remove_ln_login_from_users.rb
Râu Cao 3c2fe7c15d
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
Remove ln_login from users
Not needed anymore, removing in favor of unencrypted `ln_account`.
2023-02-23 20:13:08 +08:00

6 lines
130 B
Ruby

class RemoveLnLoginFromUsers < ActiveRecord::Migration[7.0]
def change
remove_column :users, :ln_login_cyphertext
end
end