feat: switch to postgres only sync, removed nats publishing
Some checks failed
release / docker (push) Has been cancelled

This commit is contained in:
2025-01-09 09:28:41 +03:00
parent d9c619ad71
commit cd5b31d07e
7 changed files with 52 additions and 158 deletions

View File

@@ -0,0 +1,14 @@
CREATE TABLE IF NOT EXISTS ussd_data(
id INT GENERATED ALWAYS AS IDENTITY PRIMARY KEY,
phone_number TEXT UNIQUE,
blockchain_address TEXT UNIQUE,
first_name TEXT,
last_name TEXT,
yob INT,
location_name TEXT,
gender TEXT,
commodities TEXT,
active_voucher TEXT,
lang_code TEXT
);