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

db.pings.V1__pings.sql Maven / Gradle / Ivy

There is a newer version: 1.0.177
Show newest version
create table pings
(
    -- alias for rowid --
    id      integer primary key,
    guild   big int not null,
    user    big int not null,
    regex   text    not null,
    message text    not null
);

create table ping_threads
(
    user   big int not null primary key,
    thread big int not null
) without rowid;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy