6 lines
140 B
Ruby
6 lines
140 B
Ruby
class RemoveLnLoginCiphertextFromUsers < ActiveRecord::Migration[7.0]
|
|
def change
|
|
remove_column :users, :ln_login_ciphertext
|
|
end
|
|
end
|