mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-21 18:08:25 +00:00
Add missing sql changesets
This commit is contained in:
@ -0,0 +1,7 @@
|
||||
CREATE TABLE "totp" (
|
||||
"user_id" varchar(254) not null primary key,
|
||||
"enabled" boolean not null,
|
||||
"secret" varchar(254) not null,
|
||||
"created" timestamp not null,
|
||||
FOREIGN KEY ("user_id") REFERENCES "user_"("uid") ON DELETE CASCADE
|
||||
);
|
@ -0,0 +1,7 @@
|
||||
CREATE TABLE `totp` (
|
||||
`user_id` varchar(254) not null primary key,
|
||||
`enabled` boolean not null,
|
||||
`secret` varchar(254) not null,
|
||||
`created` timestamp not null,
|
||||
FOREIGN KEY (`user_id`) REFERENCES `user_`(`uid`) ON DELETE CASCADE
|
||||
);
|
Reference in New Issue
Block a user