initial schema

This commit is contained in:
Lance Vick 2023-08-06 13:35:26 -07:00
parent 81bb308503
commit d0ea2cbec3
Signed by: lrvick
GPG Key ID: 8E47A1EC35A1551D
1 changed files with 2 additions and 0 deletions

2
postgres/schema.sql Normal file
View File

@ -0,0 +1,2 @@
CREATE TABLE hashes (hash VARCHAR(32), PRIMARY_KEY (hash));
COPY hashes(hash) FROM 'hashes.txt';