8 lines
339 B
SQL
8 lines
339 B
SQL
-- schema for rate limiter (https://github.com/animir/node-rate-limiter-flexible)
|
|
-- @see https://github.com/animir/node-rate-limiter-flexible/blob/661d794212441f104a6941092c28805b3bd76537/lib/RateLimiterPostgres.js#L161
|
|
CREATE TABLE public.limiter (
|
|
key varchar(255) PRIMARY KEY,
|
|
points integer NOT NULL DEFAULT 0,
|
|
expire bigint
|
|
);
|