mirror of
https://github.com/Mezeporta/Erupe.git
synced 2025-12-15 16:34:51 +01:00
add login boost schema
This commit is contained in:
12
patch-schema/login-boost.sql
Normal file
12
patch-schema/login-boost.sql
Normal 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;
|
||||||
Reference in New Issue
Block a user