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

70 lines
1.5 KiB
JSON

{
"db_name": "PostgreSQL",
"query": "SELECT id, community_id, gitlab_url, project_path, is_active,\n sync_issues, sync_merge_requests, auto_create_proposals, last_synced_at\n FROM gitlab_connections WHERE community_id = $1",
"describe": {
"columns": [
{
"ordinal": 0,
"name": "id",
"type_info": "Uuid"
},
{
"ordinal": 1,
"name": "community_id",
"type_info": "Uuid"
},
{
"ordinal": 2,
"name": "gitlab_url",
"type_info": "Varchar"
},
{
"ordinal": 3,
"name": "project_path",
"type_info": "Varchar"
},
{
"ordinal": 4,
"name": "is_active",
"type_info": "Bool"
},
{
"ordinal": 5,
"name": "sync_issues",
"type_info": "Bool"
},
{
"ordinal": 6,
"name": "sync_merge_requests",
"type_info": "Bool"
},
{
"ordinal": 7,
"name": "auto_create_proposals",
"type_info": "Bool"
},
{
"ordinal": 8,
"name": "last_synced_at",
"type_info": "Timestamptz"
}
],
"parameters": {
"Left": [
"Uuid"
]
},
"nullable": [
false,
false,
false,
false,
false,
false,
false,
false,
true
]
},
"hash": "1dedda4e97c32d56c88d29a247f788e5aac67cc9bc59fdd52b40926af3e5a671"
}