Skip to content

Commit

Permalink
fix(be): totp migration
Browse files Browse the repository at this point in the history
  • Loading branch information
fiftin committed Jan 4, 2025
1 parent 13656ab commit 8b72936
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion db/sql/migrations/v2.12.0.sql
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
create table user__totp(
`id` integer primary key autoincrement,
`user_id` int NOT NULL,
`secret` varchar(200) NOT NULL,
`url` varchar(250) NOT NULL,
`created` datetime NOT NULL,
unique (`user_id`),
foreign key (`user_id`) references `user`(`id`) on delete cascade
Expand Down

0 comments on commit 8b72936

Please sign in to comment.