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

db.main.V2__info_channels.sql Maven / Gradle / Ivy

There is a newer version: 1.0.177
Show newest version
-- See net.neoforged.camelot.db.schemas.InfoChannel --
create table info_channels
(
    -- the channel ID --
    channel        unsigned big int not null primary key,
    -- the GitHub directory location --
    location       text             not null,
    -- recreate the entire channel contents on update --
    force_recreate boolean          not null,
    -- last known content hash --
    hash           text
) without rowid;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy