home / japari_dc_bot

command_logs

0 rows where member_discord_id = 43

✎ View and edit SQL

This data as json

0 records

CREATE TABLE command_logs (
            id INTEGER PRIMARY KEY AUTOINCREMENT,
            member_discord_id BIGINT NOT NULL,
            guild_id BIGINT,
            channel_id BIGINT,
            command_name TEXT NOT NULL,
            command_args TEXT, -- 儲存為 JSON 字串
            invoked_at TEXT NOT NULL DEFAULT CURRENT_TIMESTAMP,
            is_success BOOLEAN, -- SQLite 中 BOOLEAN 會是 INTEGER 0 或 1
            FOREIGN KEY (member_discord_id) REFERENCES discord_members(discord_id)
        );
Powered by Datasette · Queries took 73.951ms