captcha_aggregator/db_schema.psql

5 lines
106 B
Plaintext

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