7 lines
192 B
Ruby
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
|