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

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

There is a newer version: 1.0.177
Show newest version
create table quote_authors
(
    -- alias for rowid --
    id      integer primary key,
    guild   unsigned big int not null,
    name    text             not null,
    uid     unsigned big int,
    recheck tinyint          not null default 1
);

create table quotes
(
    -- alias for rowid --
    id      integer primary key,
    guild   unsigned big int not null,
    author  integer          not null,
    quote   text             not null,
    context text,
    quoter  unsigned big int,

    foreign key (author) references quote_authors (id) on delete cascade
);




© 2015 - 2024 Weber Informatics LLC | Privacy Policy