add login boost schema

This commit is contained in:
wish
2023-03-04 22:56:26 +11:00
parent 4cfba97701
commit c241a33657

View File

@@ -0,0 +1,12 @@
BEGIN;
DROP TABLE IF EXISTS public.login_boost_state;
CREATE TABLE IF NOT EXISTS public.login_boost (
char_id INTEGER,
week_req INTEGER,
expiration TIMESTAMP WITH TIME ZONE,
reset TIMESTAMP WITH TIME ZONE
);
END;