added counter to keys table
this lets us increment uses when a key is going to be used
This commit is contained in:
@@ -5,5 +5,6 @@
|
|||||||
CREATE TABLE IF NOT EXISTS `keys`(
|
CREATE TABLE IF NOT EXISTS `keys`(
|
||||||
`id` varchar(64) NOT NULL,
|
`id` varchar(64) NOT NULL,
|
||||||
`limit` integer,
|
`limit` integer,
|
||||||
|
`uses` integer,
|
||||||
PRIMARY KEY(`id`)
|
PRIMARY KEY(`id`)
|
||||||
);
|
);
|
||||||
Reference in New Issue
Block a user