likwid/backend/.sqlx/query-c2a2d3c0016e6d4df3fd04f9e24c5c4fde0acbe42a195eaf74cf5299dacb846c.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, community_id, export_type, \n format::text AS \"format!\", status::text AS \"status!\",\n record_count, download_url\n FROM export_jobs WHERE id = $1",
"describe": {
"columns": [
{
"ordinal": 0,
"name": "id",
"type_info": "Uuid"
},
{
"ordinal": 1,
"name": "community_id",
"type_info": "Uuid"
},
{
"ordinal": 2,
"name": "export_type",
"type_info": "Varchar"
},
{
"ordinal": 3,
"name": "format!",
"type_info": "Text"
},
{
"ordinal": 4,
"name": "status!",
"type_info": "Text"
},
{
"ordinal": 5,
"name": "record_count",
"type_info": "Int4"
},
{
"ordinal": 6,
"name": "download_url",
"type_info": "Text"
}
],
"parameters": {
"Left": [
"Uuid"
]
},
"nullable": [
false,
true,
false,
null,
null,
true,
true
]
},
"hash": "c2a2d3c0016e6d4df3fd04f9e24c5c4fde0acbe42a195eaf74cf5299dacb846c"
}