likwid/backend/.sqlx/query-3a8154bdd76daa157200feea1cce96d67bdb7b7c824088ca625105e96495938f.json
Marco Allegretti 910a6465f2 Initial commit: Likwid governance platform
- 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
2026-01-27 17:21:58 +01:00

58 lines
1.2 KiB
JSON

{
"db_name": "PostgreSQL",
"query": "SELECT \n id, proposal_id, template_id, current_phase_id, \n status, started_at, completed_at\n FROM workflow_instances\n WHERE proposal_id = $1",
"describe": {
"columns": [
{
"ordinal": 0,
"name": "id",
"type_info": "Uuid"
},
{
"ordinal": 1,
"name": "proposal_id",
"type_info": "Uuid"
},
{
"ordinal": 2,
"name": "template_id",
"type_info": "Uuid"
},
{
"ordinal": 3,
"name": "current_phase_id",
"type_info": "Uuid"
},
{
"ordinal": 4,
"name": "status",
"type_info": "Varchar"
},
{
"ordinal": 5,
"name": "started_at",
"type_info": "Timestamptz"
},
{
"ordinal": 6,
"name": "completed_at",
"type_info": "Timestamptz"
}
],
"parameters": {
"Left": [
"Uuid"
]
},
"nullable": [
false,
false,
false,
true,
false,
false,
true
]
},
"hash": "3a8154bdd76daa157200feea1cce96d67bdb7b7c824088ca625105e96495938f"
}