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

db.config.V1__logging_threadpings.sql Maven / Gradle / Ivy

There is a newer version: 1.0.177
Show newest version
create table logging_channels
(
    type    text             not null,
    channel unsigned big int not null,
    constraint logging_channels_keys primary key (type, channel)
);

create table thread_pings
(
    channel unsigned big int not null,
    role    unsigned big int not null,
    constraint thread_pings_pk primary key (channel, role)
);




© 2015 - 2024 Weber Informatics LLC | Privacy Policy