likwid/backend/.sqlx/query-df917df33b1f18f0545d866fdcdbff3c189c549e3e92966b808166ebd65a758e.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

38 lines
924 B
JSON

{
"db_name": "PostgreSQL",
"query": "SELECT pi.id, pi.workflow_instance_id, wp.auto_advance, wp.failure_action\n FROM phase_instances pi\n JOIN workflow_phases wp ON wp.id = pi.phase_id\n WHERE pi.status = 'active' AND pi.scheduled_end < NOW()",
"describe": {
"columns": [
{
"ordinal": 0,
"name": "id",
"type_info": "Uuid"
},
{
"ordinal": 1,
"name": "workflow_instance_id",
"type_info": "Uuid"
},
{
"ordinal": 2,
"name": "auto_advance",
"type_info": "Bool"
},
{
"ordinal": 3,
"name": "failure_action",
"type_info": "Varchar"
}
],
"parameters": {
"Left": []
},
"nullable": [
false,
false,
false,
false
]
},
"hash": "df917df33b1f18f0545d866fdcdbff3c189c549e3e92966b808166ebd65a758e"
}