2017-05-16 07:45:10 +02:00
|
|
|
create table if not exists quotes (
|
2017-06-30 17:47:24 +02:00
|
|
|
id serial primary key,
|
|
|
|
nick varchar(30) not null,
|
|
|
|
item text not null,
|
|
|
|
channel varchar(32) not null,
|
|
|
|
created_by varchar(30) not null,
|
|
|
|
created_at timestamp not null default current_timestamp,
|
2017-05-29 18:44:26 +02:00
|
|
|
unique (nick, item)
|
2017-05-16 07:45:10 +02:00
|
|
|
);
|
|
|
|
|
2017-05-16 12:06:29 +02:00
|
|
|
create table if not exists mcmaniacs (
|
2017-06-29 22:56:32 +02:00
|
|
|
id serial primary key,
|
|
|
|
item text not null,
|
|
|
|
unique (item)
|
2017-05-16 07:45:10 +02:00
|
|
|
);
|
2017-05-16 12:06:29 +02:00
|
|
|
|
|
|
|
create table if not exists timers (
|
2017-06-30 13:25:56 +02:00
|
|
|
id serial primary key,
|
|
|
|
mask varchar(255) not null,
|
|
|
|
target varchar(32) not null,
|
|
|
|
message text not null,
|
|
|
|
delay varchar(10) not null,
|
|
|
|
ends_at timestamp not null,
|
|
|
|
created_at timestamp not null default current_timestamp
|
2017-05-16 12:06:29 +02:00
|
|
|
);
|
2017-05-16 18:34:29 +02:00
|
|
|
|
|
|
|
create table if not exists tells (
|
2017-06-29 22:56:32 +02:00
|
|
|
id serial primary key,
|
|
|
|
from_nick varchar(30) not null,
|
|
|
|
to_nick varchar(30) not null,
|
|
|
|
message text not null,
|
|
|
|
created_at timestamp not null default current_timestamp,
|
|
|
|
unique (to_nick, message)
|
2017-05-16 18:34:29 +02:00
|
|
|
);
|
2017-05-29 14:39:48 +02:00
|
|
|
|
|
|
|
create table if not exists seens (
|
2017-06-30 17:47:24 +02:00
|
|
|
id serial primary key,
|
|
|
|
nick varchar(30) not null,
|
|
|
|
host varchar(255) not null,
|
|
|
|
channel varchar(32) not null,
|
|
|
|
message text not null,
|
|
|
|
seen_at timestamp not null default current_timestamp,
|
2017-06-29 22:56:32 +02:00
|
|
|
unique (nick)
|
2017-05-29 14:39:48 +02:00
|
|
|
);
|
2017-05-31 14:05:55 +02:00
|
|
|
|
2017-06-30 17:47:24 +02:00
|
|
|
create table if not exists users (
|
|
|
|
id serial primary key,
|
|
|
|
nick varchar(30) not null,
|
|
|
|
husbando varchar(255) null,
|
|
|
|
waifu varchar(255) null,
|
|
|
|
fines integer default 0,
|
2017-06-29 22:56:32 +02:00
|
|
|
unique (nick)
|
2017-05-31 14:05:55 +02:00
|
|
|
);
|
2017-06-30 17:47:24 +02:00
|
|
|
|
|
|
|
create table if not exists kills (
|
|
|
|
id serial primary key,
|
|
|
|
item text not null,
|
|
|
|
unique (item)
|
|
|
|
);
|
|
|
|
|
|
|
|
create table if not exists yiffs (
|
|
|
|
id serial primary key,
|
|
|
|
item text not null,
|
|
|
|
unique (item)
|
|
|
|
);
|
2017-07-04 15:22:20 +02:00
|
|
|
|
|
|
|
create table if not exists last_messages (
|
|
|
|
id serial primary key,
|
|
|
|
nick varchar(30) not null,
|
|
|
|
host varchar(255) not null,
|
|
|
|
channel varchar(32) not null,
|
|
|
|
item text not null,
|
|
|
|
unique (nick, channel)
|
|
|
|
);
|