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

82 lines
1.6 KiB
JSON

{
"db_name": "PostgreSQL",
"query": "SELECT i.*, c.name as community_name\n FROM invitations i\n LEFT JOIN communities c ON c.id = i.community_id\n WHERE i.code = $1",
"describe": {
"columns": [
{
"ordinal": 0,
"name": "id",
"type_info": "Uuid"
},
{
"ordinal": 1,
"name": "code",
"type_info": "Varchar"
},
{
"ordinal": 2,
"name": "created_by",
"type_info": "Uuid"
},
{
"ordinal": 3,
"name": "email",
"type_info": "Varchar"
},
{
"ordinal": 4,
"name": "community_id",
"type_info": "Uuid"
},
{
"ordinal": 5,
"name": "max_uses",
"type_info": "Int4"
},
{
"ordinal": 6,
"name": "uses_count",
"type_info": "Int4"
},
{
"ordinal": 7,
"name": "expires_at",
"type_info": "Timestamptz"
},
{
"ordinal": 8,
"name": "is_active",
"type_info": "Bool"
},
{
"ordinal": 9,
"name": "created_at",
"type_info": "Timestamptz"
},
{
"ordinal": 10,
"name": "community_name",
"type_info": "Varchar"
}
],
"parameters": {
"Left": [
"Text"
]
},
"nullable": [
false,
false,
false,
true,
true,
true,
true,
true,
true,
true,
false
]
},
"hash": "1ad83f237ca18e09dfac8f654b6befac12576bf30f35f3bf626b7ccf46a4fb94"
}