5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-05-17 03:40:48 +00:00
panel/db/migrate/20230829204127_add_private_key_pem_ciphertext_to_sites.rb
2023-08-31 12:15:09 -03:00

10 lines
258 B
Ruby

# frozen_string_literal: true
# Almacena las llaves privadas de cada sitio
class AddPrivateKeyPemCiphertextToSites < ActiveRecord::Migration[6.1]
# Agrega la columna cifrada
def change
add_column :sites, :private_key_pem_ciphertext, :text
end
end