fddf
This commit is contained in:
parent
51ea2ecc16
commit
c87e6bb6fa
2 changed files with 12 additions and 15 deletions
|
@ -1,13 +0,0 @@
|
|||
Hi I’ll pretty this up eventually, but here are the rules: <br><br>
|
||||
|
||||
<h3>RULE 1</h3>No sexualizing minors even as a “joke.” There is zero tolerance for pedo shit here. Go to Reddit if you want that.<br><br>
|
||||
|
||||
<h3>RULE 2 </h3>No doxxing ANYONE. <br><br>
|
||||
|
||||
<h3>RULE 3 </h3>Using alts to game dramacoin will get you banned. <br><br>
|
||||
|
||||
<h3>RULE 4 </h3>We’re all doing this for fun. Don’t make this “not fun.” <br><br>
|
||||
|
||||
<h3>RULE 5 </h3>All rules can and likely will be ignored at admin discretion. Be funny, or at least compelling, and pretty much anything legal is fine.<br><br>
|
||||
|
||||
Okay I think that’s all, thanks for reading! No one cares about your dumb <I>free speech</I> or whatever, go to Gab or something if you want to screech about amendments and stuff. Rules are not hard and fast, and janitorial abuse is inherent to the platform. So is ban evasion. Have fun or log out, both are easy!
|
14
schema.sql
14
schema.sql
|
@ -265,7 +265,8 @@ CREATE TABLE public.comments (
|
|||
body_html character varying(40000),
|
||||
ban_reason character varying(25),
|
||||
realupvotes integer,
|
||||
top_comment_id integer
|
||||
top_comment_id integer,
|
||||
is_pinned_utc integer
|
||||
);
|
||||
|
||||
|
||||
|
@ -577,7 +578,8 @@ CREATE TABLE public.submissions (
|
|||
ban_reason character varying(25),
|
||||
title_html character varying(1500),
|
||||
realupvotes integer,
|
||||
flair character varying(350)
|
||||
flair character varying(350),
|
||||
stickied_utc integer
|
||||
);
|
||||
|
||||
|
||||
|
@ -1708,6 +1710,14 @@ ALTER TABLE ONLY public.flags
|
|||
ALTER TABLE ONLY public.notifications
|
||||
ADD CONSTRAINT notifications_comment_id_fkey FOREIGN KEY (comment_id) REFERENCES public.comments(id);
|
||||
|
||||
|
||||
--
|
||||
-- Name: FUNCTION pg_stat_statements_reset(userid oid, dbid oid, queryid bigint); Type: ACL; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
GRANT ALL ON FUNCTION public.pg_stat_statements_reset(userid oid, dbid oid, queryid bigint) TO doadmin WITH GRANT OPTION;
|
||||
|
||||
|
||||
--
|
||||
-- PostgreSQL database dump complete
|
||||
--
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue