mirror of
https://github.com/lyx0/nourybot.git
synced 2024-11-13 19:49:55 +01:00
17 lines
670 B
SQL
17 lines
670 B
SQL
CREATE TABLE IF NOT EXISTS uploads (
|
|
id bigserial PRIMARY KEY,
|
|
added_at timestamp(0) with time zone NOT NULL DEFAULT NOW(),
|
|
twitchlogin text NOT NULL,
|
|
twitchid text NOT NULL,
|
|
twitchmessage text NOT NULL,
|
|
twitchchannel text NOT NULL,
|
|
filehoster text NOT NULL,
|
|
downloadurl text,
|
|
uploadurl text,
|
|
identifier text
|
|
);
|
|
|
|
INSERT INTO uploads (added_at,twitchlogin,twitchid,twitchchannel,twitchmessage,filehoster,downloadurl,uploadurl,identifier) VALUES
|
|
(NOW(),'nouryxd','31437432','nouryxd','()yaf https://www.youtube.com/watch?v=3rBFkwtaQbU','yaf','https://www.youtube.com/watch?v=3rBFkwtaQbU','https://i.yaf.li/LEFuX.webm','a4af2284-4e13-46fa-9896-393bb1771a9d');
|
|
|