freechat/server/migrations/2020-06-02-055256_keys/up.sql

9 lines
266 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,
PRIMARY KEY(`id`)
);