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

35 lines
1 KiB
JSON

{
"db_name": "PostgreSQL",
"query": "\n SELECT\n p.name,\n COALESCE(cp.is_active, false) as \"is_active!\",\n COALESCE(cp.settings, '{}'::jsonb) as \"settings!: serde_json::Value\"\n FROM plugins p\n LEFT JOIN community_plugins cp\n ON cp.plugin_id = p.id AND cp.community_id = $1\n WHERE p.is_active = true\n AND p.name = ANY($2)\n ",
"describe": {
"columns": [
{
"ordinal": 0,
"name": "name",
"type_info": "Varchar"
},
{
"ordinal": 1,
"name": "is_active!",
"type_info": "Bool"
},
{
"ordinal": 2,
"name": "settings!: serde_json::Value",
"type_info": "Jsonb"
}
],
"parameters": {
"Left": [
"Uuid",
"TextArray"
]
},
"nullable": [
false,
null,
null
]
},
"hash": "778a5cc33f4b205914711921c98653f826d2adc8175c9297efb485caf4c3d96d"
}