Files
captcha_aggregator/db_schema.psql
2025-04-25 22:25:41 +03:00

5 lines
106 B
Plaintext

CREATE TABLE IF NOT EXISTS captchas(
id SERIAL PRIMARY KEY,
hash CHAR(32),
solution CHAR(6)
);