create_account work

This commit is contained in:
Pablo Fernandez 2023-12-20 10:21:24 +00:00
commit 0a5682d1e4
22 changed files with 265 additions and 154 deletions

View file

@ -34,6 +34,15 @@ model KeyUser {
@@unique([keyName, userPubkey], name: "unique_key_user")
}
model Key {
id Int @id @default(autoincrement())
keyName String @unique
createdAt DateTime @default(now())
updatedAt DateTime @default(now()) @updatedAt
deletedAt DateTime?
pubkey String
}
model SigningCondition {
id Int @id @default(autoincrement())
method String?