likwid/backend/.sqlx/query-df3c9235defd412e75b967ec4c1d052404a6289ec89ebc3cf7524f0a65279258.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.1 KiB
JSON

{
"db_name": "PostgreSQL",
"query": "SELECT id, email, community_id, is_active, expires_at, max_uses, uses_count\n FROM invitations WHERE code = $1",
"describe": {
"columns": [
{
"ordinal": 0,
"name": "id",
"type_info": "Uuid"
},
{
"ordinal": 1,
"name": "email",
"type_info": "Varchar"
},
{
"ordinal": 2,
"name": "community_id",
"type_info": "Uuid"
},
{
"ordinal": 3,
"name": "is_active",
"type_info": "Bool"
},
{
"ordinal": 4,
"name": "expires_at",
"type_info": "Timestamptz"
},
{
"ordinal": 5,
"name": "max_uses",
"type_info": "Int4"
},
{
"ordinal": 6,
"name": "uses_count",
"type_info": "Int4"
}
],
"parameters": {
"Left": [
"Text"
]
},
"nullable": [
false,
true,
true,
true,
true,
true,
true
]
},
"hash": "df3c9235defd412e75b967ec4c1d052404a6289ec89ebc3cf7524f0a65279258"
}