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
16 lines
658 B
JSON
16 lines
658 B
JSON
{
|
|
"db_name": "PostgreSQL",
|
|
"query": "INSERT INTO phase_participation (phase_instance_id, user_id, participation_type)\n SELECT pi.id, $2, $3\n FROM phase_instances pi\n JOIN workflow_instances wi ON wi.id = pi.workflow_instance_id\n WHERE wi.proposal_id = $1 AND pi.status = 'active'\n ON CONFLICT (phase_instance_id, user_id, participation_type) DO NOTHING",
|
|
"describe": {
|
|
"columns": [],
|
|
"parameters": {
|
|
"Left": [
|
|
"Uuid",
|
|
"Uuid",
|
|
"Varchar"
|
|
]
|
|
},
|
|
"nullable": []
|
|
},
|
|
"hash": "8e856e6e4081d2ca26e5e6097848fab90e055cbbc318956a3869750a0855fe3f"
|
|
}
|