fixed the index and cleared my head

This commit is contained in:
Artemis 2025-01-24 12:50:46 +01:00
parent 390ff5d6c9
commit 10e573a905
3 changed files with 10 additions and 3 deletions

2
.gitignore vendored
View file

@ -1,4 +1,4 @@
# built binary
cap
/target
*.sqlite
*.sqlite*

View file

@ -23,4 +23,11 @@ a profile is
- privacy policy and GDPR notice
- saving register form as it gets filled / re-display it with partial values
- form submit errors
- tag password to allow editing
- account
- basic username / password thingy
- p2: optional email for forgotten password i guess
- "my registered tags" page
- ability to delete a tag (remove all data expect the ID to lock the ID)
- ability to delete the whole account (incl. all registered tags)
- deleting a tag keeping the account allows to re-use the tag later on. no one else can use it still
- pgsql migration? may make hosting easier for me as well as cleaner migrations and types

View file

@ -22,5 +22,5 @@ create table if not exists doll_profiles (
-- ID'ing
behaviour text,
microchip_id text
microchip_id text unique
) strict;