WIP: migrations

This commit is contained in:
2024-01-28 23:34:13 -03:00
parent fbf487051e
commit 1aa9f6992b
5 changed files with 112 additions and 0 deletions

17
source/db/types.d Normal file
View File

@@ -0,0 +1,17 @@
module db.types;
class User {
string id;
string name;
string handle;
bool local;
string ap_id;
string ap_privkey;
string ap_pubkey;
string ap_shared_inbox;
string ap_inbox;
string ap_outbox;
string ap_followers_addr;
string ap_following_addr;
}