add persistent featured weapons

This commit is contained in:
wish
2022-10-23 12:45:10 +11:00
parent e5e3750045
commit 7691b84259
4 changed files with 42 additions and 23 deletions

View File

@@ -0,0 +1,9 @@
BEGIN;
CREATE TABLE IF NOT EXISTS public.feature_weapon
(
start_time timestamp without time zone NOT NULL,
featured integer NOT NULL
);
END;