With this commit, we start to store encryption key in the database in encrypted form instead of plain text. We also start to clean encryption key from the database at the end of the mesh refreshing.
10 lines
150 B
Ruby
10 lines
150 B
Ruby
# frozen_string_literal: true
|
|
|
|
Sequel.migration do
|
|
change do
|
|
alter_table(:nic) do
|
|
set_column_allow_null :encryption_key
|
|
end
|
|
end
|
|
end
|