rDrama/seed-emojis-WPD.sql

23 lines
1.6 KiB
MySQL
Raw Normal View History

2023-10-24 19:04:40 +00:00
INSERT INTO public.emojis (name, kind, author_id, tags, nsfw, created_utc) VALUES
2023-10-26 19:02:12 +00:00
('capygun', 'Capy', 2, 'aevann mad', false, 1698332966),
('capyguts', 'Capy', 2, 'weeb anime finalfantasy', false, 1698328820),
2023-10-27 06:02:12 +00:00
('capyinpixel', 'Capy', 2, 'aevann sprite 8bit', false, 1698343552),
2023-10-29 17:02:12 +00:00
('marsey', 'Marsey', 2, 'orangecat', false, 1698586179),
2023-10-26 19:02:12 +00:00
('marseyaward2', 'Marsey', 2, 'chair obama', false, 1698326564),
('marseybeingnerd', 'Marsey', 2, 'dork dweeb glasses', false, 1698330357),
('marseyconstipation', 'Marsey', 2, 'shit poop diarrhea litter constipated', false, 1698329319),
2023-10-29 18:02:13 +00:00
('marseydomokun', 'Marsey', 2, 'weebshit', false, 1698550172),
2023-10-26 19:02:12 +00:00
('marseyeyeball', 'Marsey', 2, 'gore bloody', false, 1698332084),
2023-10-27 06:02:12 +00:00
('marseyinpixels', 'Marsey', 2, 'sprite 8bit', false, 1698343460),
('marseyjoyus', 'Marsey', 2, 'happy grin bucktooth yippie', false, 1698344674),
2023-10-28 19:25:23 +00:00
('marseynerdy', 'Marsey', 2, 'nerd loser reading book', false, 1698342535),
2023-10-28 19:02:12 +00:00
('marseypinkk', 'Marsey', 2, 'pink strawberry scarf cold ill sick', false, 1698496927),
2023-10-27 06:02:12 +00:00
('marseytortured', 'Marsey', 2, 'slitwrists crying sad tears blood cuts tortured mutilated gore', false, 1698367179),
2023-10-28 19:02:12 +00:00
('marseyusatan', 'Marsey', 2, 'usagi', false, 1698470278),
2023-10-28 19:25:23 +00:00
('marseywhale', 'Marsey', 2, 'fat diabetic obese mcdonalds whale fries burger soda', false, 1698326462),
2023-10-28 19:02:12 +00:00
('marseywhat', 'Marsey', 2, 'disgust huh', false, 1698463302),
2023-10-26 19:02:12 +00:00
('minioncocksock', 'Misc', 2, 'cocksleeve', true, 1698334044),
2023-10-28 00:02:12 +00:00
('wojakselfsuck', 'Wojak', 2, 'penis cock', true, 1698333394),
('wolfamongus', 'Wolf', 2, 'sussy', false, 1698413110)
2023-10-29 13:02:12 +00:00
ON CONFLICT (name) DO UPDATE SET tags = EXCLUDED.tags, kind = EXCLUDED.kind, nsfw = EXCLUDED.nsfw;