feat(auth): add fied verification data to session

This commit is contained in:
Denis Gukov 2025-01-05 03:02:13 +05:00
parent 2195289df6
commit c2bd2ac424
No known key found for this signature in database
GPG Key ID: 044381366A5D4731

View File

@ -8,4 +8,5 @@ create table user__totp(
); );
alter table `session` add column verification_method int not null default 0; alter table `session` add column verification_method int not null default 0;
alter table `session` add column verification_data text;
alter table `session` add column verified boolean not null default false; alter table `session` add column verified boolean not null default false;