All Downloads are FREE. Search and download functionalities are using the official Maven repository.

db.appeals.V1__ban_appeals.sql Maven / Gradle / Ivy

There is a newer version: 1.0.177
Show newest version
create table current_ban_appeals
(
    guild    unsigned big int not null,
    user     unsigned big int not null,
    email    text             not null,
    thread   unsigned big int not null,

    -- the current message sent by the moderators of the server to the user --
    -- will be made null again when the user replies --
    followup text
);

create table blocked_from_ban_appeals
(
    guild      unsigned big int not null,
    user       unsigned big int not null,
    reason     text             not null,
    expiration unsigned big int not null
);




© 2015 - 2024 Weber Informatics LLC | Privacy Policy