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

8 lines
205 B
MySQL
Raw Normal View History

2023-08-03 04:48:35 +05:30
CREATE TABLE IF NOT EXISTS logs (
string VARCHAR(100) NOT NULL,
salt VARCHAR(100) NOT NULL,
time VARCHAR(100) NOT NULL,
difficulty INTEGER NOT NULL UNIQUE,
ID INTEGER PRIMARY KEY NOT NULL
);