akkounts/db/migrate/20211120010540_add_lndhub_credentials_to_user.rb

7 lines
192 B
Ruby

class AddLndhubCredentialsToUser < ActiveRecord::Migration[6.0]
def change
add_column :users, :ln_login_ciphertext, :text
add_column :users, :ln_password_ciphertext, :text
end
end