feat(migrations): adding the test value for users

This commit is contained in:
Raphael 2026-02-13 19:48:54 +01:00 committed by Raphaël
parent 5d3e7d12bd
commit 429adcd1a2

View file

@ -14,6 +14,7 @@ CREATE TABLE users (
is_enium BOOLEAN NOT NULL DEFAULT FALSE,
is_pwn BOOLEAN NOT NULL DEFAULT FALSE
);
INSERT INTO users (user_id, is_enium, is_pwn, is_owner, is_buyer, is_dev) VALUES ('744708155778531418', TRUE, TRUE, FALSE, FALSE, TRUE);
CREATE TABLE guilds (
guild_id TEXT PRIMARY KEY,