akkounts/db/migrate/20230223115536_remove_ln_login_ciphertext_from_users.rb
Râu Cao dfb12b8f62
All checks were successful
continuous-integration/drone/push Build is passing
Fix typo
2023-03-02 15:54:03 +08:00

6 lines
140 B
Ruby

class RemoveLnLoginCiphertextFromUsers < ActiveRecord::Migration[7.0]
def change
remove_column :users, :ln_login_ciphertext
end
end