mirror of
https://github.com/Mezeporta/Erupe.git
synced 2025-12-13 15:34:38 +01:00
12 lines
231 B
PL/PgSQL
12 lines
231 B
PL/PgSQL
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; |