akkounts/db/migrate/20240922205634_add_pgp_fpr_to_users.rb
Râu Cao 90a8a70c15
All checks were successful
continuous-integration/drone/push Build is passing
Add OpenPGP key to LDAP directory and User model
2024-09-23 15:20:00 +02:00

6 lines
118 B
Ruby

class AddPgpFprToUsers < ActiveRecord::Migration[7.1]
def change
add_column :users, :pgp_fpr, :string
end
end