10 lines
287 B
SQL
10 lines
287 B
SQL
-- ID's are given to properly auth'ed users
|
|
-- Limit represents a daily limit imposed on users
|
|
-- Limits that are null just mean the limit does not exist
|
|
|
|
CREATE TABLE IF NOT EXISTS `keys`(
|
|
`id` varchar(64) NOT NULL,
|
|
`limit` integer,
|
|
`uses` integer,
|
|
PRIMARY KEY(`id`)
|
|
); |