mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-05-28 19:19:15 +00:00
Add missing sql changesets
This commit is contained in:
parent
9dfe7f30a0
commit
3a5ef62715
@ -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
|
||||
);
|
Loading…
x
Reference in New Issue
Block a user