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

64 lines
1.4 KiB
JSON

{
"db_name": "PostgreSQL",
"query": "SELECT \n id, proposal_id, title, description,\n status::text AS \"status!\", proposed_by,\n support_count, oppose_count\n FROM proposal_amendments\n WHERE proposal_id = $1\n ORDER BY proposed_at DESC",
"describe": {
"columns": [
{
"ordinal": 0,
"name": "id",
"type_info": "Uuid"
},
{
"ordinal": 1,
"name": "proposal_id",
"type_info": "Uuid"
},
{
"ordinal": 2,
"name": "title",
"type_info": "Varchar"
},
{
"ordinal": 3,
"name": "description",
"type_info": "Text"
},
{
"ordinal": 4,
"name": "status!",
"type_info": "Text"
},
{
"ordinal": 5,
"name": "proposed_by",
"type_info": "Uuid"
},
{
"ordinal": 6,
"name": "support_count",
"type_info": "Int4"
},
{
"ordinal": 7,
"name": "oppose_count",
"type_info": "Int4"
}
],
"parameters": {
"Left": [
"Uuid"
]
},
"nullable": [
false,
false,
false,
false,
null,
false,
false,
false
]
},
"hash": "9beff9c1f4daa7453bd6f13f3692b320f1f82ca87bed75f8a85e87882ac4bfc1"
}