MT#53706 OTP secret cols for admin records

Change-Id: I685014e94995d2f197778cf5cb664d45e4618825
master
Rene Krenn 2 months ago
parent 6b6a40d449
commit fff6067ac1

1
.gitignore vendored

@ -5,3 +5,4 @@ MYMETA.json
MYMETA.yml
.tags
.remote-sync.json
.vscode

@ -97,6 +97,16 @@ __PACKAGE__->add_columns(
extra => { list => ["local", "ldap"] },
is_nullable => 0,
},
"enable_2fa",
{ data_type => "tinyint", default_value => 0, is_nullable => 0 },
"show_otp_registration_info",
{ data_type => "tinyint", default_value => 0, is_nullable => 0 },
"otp_secret",
{
data_type => "char",
is_nullable => 1,
size => 32,
},
);
__PACKAGE__->set_primary_key("id");

Loading…
Cancel
Save