This repository has been archived on 2024-06-08. You can view files and clone it, but cannot push or open issues or pull requests.
powd/migrations/20230802225710_logs.sql
2023-08-03 14:53:48 +05:30

8 lines
199 B
SQL

CREATE TABLE IF NOT EXISTS logs (
string VARCHAR(100) NOT NULL,
salt VARCHAR(100) NOT NULL,
time INTEGER NOT NULL,
difficulty INTEGER NOT NULL UNIQUE,
ID SERIAL PRIMARY KEY NOT NULL
);