This commit is contained in:
Camille Frantz 2025-01-27 14:30:29 -06:00
parent d59dd382e5
commit cf38041a73
Signed by: fyrfli
SSH Key Fingerprint: SHA256:anc9kpwB26LKDnZerjcRFNSnp4JSd+rX62ouDLrh46o

View File

@ -1,5 +1,5 @@
-- Database export via SQLPro (https://www.sqlprostudio.com/)
-- Exported by camille at 27-01-2025 14:22.
-- Exported by camille at 27-01-2025 14:30.
-- WARNING: This file may contain descructive statements such as DROPs.
-- Please ensure that you are running the script at the proper location.
@ -17,7 +17,7 @@ CREATE TABLE IF NOT EXISTS public.tags (
COMMIT;
-- Inserting 15 rows into public.tags
-- Inserting 17 rows into public.tags
-- Insert batch #1
INSERT INTO public.tags (id, tag_name, tag_description) VALUES
(1, 'spam', 'spam'),
@ -34,7 +34,9 @@ INSERT INTO public.tags (id, tag_name, tag_description) VALUES
(12, 'harassment', 'continued, targeted abuse'),
(13, 'misandry', 'open hostility towards men'),
(14, 'violence', 'targeted speech meant to convey violent actions'),
(15, 'doxing', 'deliberate actions to publicise the identity of others');
(15, 'doxing', 'deliberate actions to publicise the identity of others'),
(16, 'TERFs', 'Trans Exclusionary Radical Feminism'),
(17, 'xenophobia', 'open hostility to foreigners/immigrants');
-- END TABLE public.tags