This commit is contained in:
NewUsername
2025-10-12 18:37:32 +03:00
parent bec7093889
commit 36c25a8fe6
35 changed files with 644 additions and 85 deletions

View File

@@ -0,0 +1,8 @@
CREATE TABLE IF NOT EXISTS transactions (
id SERIAL PRIMARY KEY,
mpesa_reference VARCHAR(255),
checkout_request_id VARCHAR(255),
status VARCHAR(50),
amount DECIMAL(10,2),
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);