🗄️ Βάση Δεδομένων

9 Πίνακες, Schema

← Wiki Home

PostgreSQL 15+ · Alembic · JSONB

Πίνακες (9)

ΠίνακαςModuleΣκοπός
identity_recordsMOD-01Nullifier + Ed25519
partiesMOD-028 κόμματα
statementsMOD-0215 θέσεις
party_positionsMOD-02-1/0/1
parliament_billsMOD-03Νομοσχέδια
bill_status_logsMOD-03Audit Log
citizen_votesMOD-04UNIQUE constraint
bill_relevance_votesMOD-14Up/Down
survey_responsesMOD-02VAA JSONB

identity_records

nullifier_hash VARCHAR(64) UNIQUE NOT NULL -- SHA256 public_key_hex VARCHAR(128) NOT NULL -- Ed25519 demographic_hash VARCHAR(64) -- SHA256(region+gender+salt) status ENUM(ACTIVE, REVOKED)

citizen_votes

nullifier_hash VARCHAR(64) bill_id VARCHAR(50) → parliament_bills vote ENUM(YES, NO, ABSTAIN, UNKNOWN) signature_hex VARCHAR(128) -- Ed25519 UNIQUE(nullifier_hash, bill_id) -- prevents double vote

Migrations

cd apps/api alembic upgrade head # apply all alembic history # show history