mirror of
https://codeberg.org/likwid/likwid.git
synced 2026-02-10 13:33:09 +00:00
- Backend: Rust/Axum with PostgreSQL, plugin architecture - Frontend: Astro with polished UI - Voting methods: Approval, Ranked Choice, Schulze, STAR, Quadratic - Features: Liquid delegation, transparent moderation, structured deliberation - Documentation: User and admin guides in /docs - Deployment: Docker/Podman compose files for production and demo - Demo: Seeded data with 3 communities, 13 users, 7 proposals License: AGPLv3
17 lines
568 B
JSON
17 lines
568 B
JSON
{
|
|
"db_name": "PostgreSQL",
|
|
"query": "UPDATE deliberation_summaries SET\n content = $2, key_points = $3, last_editor_id = $4,\n version = version + 1, edit_count = edit_count + 1,\n is_approved = false, updated_at = NOW()\n WHERE id = $1",
|
|
"describe": {
|
|
"columns": [],
|
|
"parameters": {
|
|
"Left": [
|
|
"Uuid",
|
|
"Text",
|
|
"Jsonb",
|
|
"Uuid"
|
|
]
|
|
},
|
|
"nullable": []
|
|
},
|
|
"hash": "2ca4dcd48f294e84793ad46b960657a7d30cf790418baf4feab371fb45687627"
|
|
}
|