about summary refs log tree commit diff
path: root/kittybox-rs/src/database/postgres
Commit message (Collapse)AuthorAgeFilesLines
* Moved the entire Kittybox tree into the rootVika2023-07-291-416/+0
|
* postgres: Fix pretty permalinks not being shownVika2023-07-281-2/+2
|
* Fix a few bugsVika2023-07-221-1/+7
|
* database: add "add_or_update_webmention" operationVika2023-07-221-0/+39
| | | | | | | This is an operation that atomically adds or updates a webmention cite attached to a post. This is used so a database backend can optimize for it (for example, using a transaction or shifting the JSON modification operation to the database)
* postgres: optimize fetching of non-feeds by forgoing a second queryVika2023-07-221-0/+9
|
* Split Postgres schemas into twoVika2023-07-211-3/+5
| | | | | Now the postgres schemas are completely independent of each other. This took a while to figure out!
* cargo update, part 1Vika2023-07-171-5/+5
|
* Implement Postgres backendVika2023-07-091-0/+360
A single giga-commit that took me weeks to produce. I know, this is not exactly the best thing ever — but I wanted to experiment first before "committing" to the implementation, so that I would produce the best solution.