create_account work
This commit is contained in:
parent
80a8651305
commit
0a5682d1e4
22 changed files with 265 additions and 154 deletions
|
|
@ -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?
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue