likwid/backend/.sqlx/query-860d54897714862bf6312fc00b440d414b9083efd695f04c31f26510d0254208.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.3 KiB
JSON

{
"db_name": "PostgreSQL",
"query": "\n SELECT c.id, c.proposal_id, c.author_id, c.content, c.parent_id, c.created_at,\n u.username as author_name\n FROM comments c\n JOIN users u ON c.author_id = u.id\n WHERE c.proposal_id = $1\n ORDER BY c.created_at ASC\n ",
"describe": {
"columns": [
{
"ordinal": 0,
"name": "id",
"type_info": "Uuid"
},
{
"ordinal": 1,
"name": "proposal_id",
"type_info": "Uuid"
},
{
"ordinal": 2,
"name": "author_id",
"type_info": "Uuid"
},
{
"ordinal": 3,
"name": "content",
"type_info": "Text"
},
{
"ordinal": 4,
"name": "parent_id",
"type_info": "Uuid"
},
{
"ordinal": 5,
"name": "created_at",
"type_info": "Timestamptz"
},
{
"ordinal": 6,
"name": "author_name",
"type_info": "Varchar"
}
],
"parameters": {
"Left": [
"Uuid"
]
},
"nullable": [
false,
false,
false,
false,
true,
false,
false
]
},
"hash": "860d54897714862bf6312fc00b440d414b9083efd695f04c31f26510d0254208"
}