added counter to keys table

this lets us increment uses when a key is going to be used
This commit is contained in:
shockrah 2020-06-02 00:44:53 -07:00
parent 8360efced5
commit e2abc49087

View File

@ -5,5 +5,6 @@
CREATE TABLE IF NOT EXISTS `keys`(
`id` varchar(64) NOT NULL,
`limit` integer,
`uses` integer,
PRIMARY KEY(`id`)
);