Last active
September 18, 2020 12:21
-
-
Save p3t3r67x0/90ef3ddcdf3ab2eaf782fac46f27ecfe to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE INDEX `md5_idx` ON `leakz`(`md5`); | |
CREATE INDEX `sha1_idx` ON `leakz`(`sha1`); | |
CREATE INDEX `sha224_idx` ON `leakz`(`sha224`); | |
CREATE INDEX `sha256_idx` ON `leakz`(`sha256`); | |
CREATE INDEX `sha384_idx` ON `leakz`(`sha384`); | |
CREATE INDEX `sha512_idx` ON `leakz`(`sha512`); | |
CREATE PRIMARY INDEX `primary_idx` ON `leakz`; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment