Skip to content

Commit a6d8547

Browse files
committed
Complete the FlagTypes table.
1 parent 6b977fa commit a6d8547

File tree

1 file changed

+30
-1
lines changed

1 file changed

+30
-1
lines changed

sql/final_post.sql

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,38 @@ CREATE TABLE FlagTypes (
8181
Description text NOT NULL
8282
);
8383
INSERT INTO FlagTypes VALUES
84+
( 1, 'Post Other', 'Custom user-entered text' ),
85+
( 2, 'Post Spam', 'Promotion or advertisement by a company' ),
86+
( 3, 'Post Offensive', 'Offensive, abusive, or hate speech' ),
87+
( 4, 'Post Delete', 'Post should be removed' ),
88+
( 5, 'Post Undelete', 'Post should be restored' ),
89+
( 6, 'Post Low Quality', 'Severe content or formatting issues' ),
90+
( 7, 'ost Low Quality (Auto)', 'Failed low quality algorithms upon creation' ),
91+
( 8, 'Question Consecutive Closures (Auto)', 'User has had multiple questions closed back-to-back' ),
92+
( 9, 'Post Excessively Long (Auto)', 'Post body is much larger than usual' ),
93+
( 10, 'Post Too Many Comments (Auto)', 'Post has more comments than usual' ),
94+
( 11, 'Post Rollback War (Auto)', 'Post is being rolled back more than usual' ),
95+
( 12, 'Post Invalid Flags', 'User is disputing other existing flags on a post' ),
8496
( 13, 'Question Recommend Close', 'User without close privileges suggests a question should be closed' ),
8597
( 14, 'Question Close', 'User with close privileges is voting to close a question' ),
86-
( 15, 'Question Reopen', 'User with close privileges is voting to reopen a question');
98+
( 15, 'Question Reopen', 'User with close privileges is voting to reopen a question' ),
99+
( 16, 'Question Closed Without Explanatory Comment (Auto)', 'A question on a private/public beta site has been closed without any explanation' ),
100+
( 17, 'Answer Not An Answer', 'An answer is created that does not address the question' ),
101+
( 18, 'Answer Duplicate Answer (Auto)', 'Many of a user''s latest answers are similar/identical' ),
102+
( 19, 'Comment Other', 'Custom user-entered text' ),
103+
( 20, 'Comment Rude Or Offensive', 'Offensive, abusive or hate speech' ),
104+
( 21, 'Comment Not Constructive Or Off Topic', 'Adds nothing to the discussion' ),
105+
( 22, 'Comment Obsolete', 'No longer addresses the question' ),
106+
( 23, 'Comment Too Chatty', 'Verbosity abounds' ),
107+
( 24, 'Post Vandalism Deletions (Auto)', 'Possible vandalism of own posts; multiple deletions in a short time' ),
108+
( 25, 'Post Vandalism Edits (Auto)', 'Possible vandalism of own posts; multiple edits in a short time' ),
109+
( 26, 'Comment Vandalism Deletions (Auto)', 'Possible vandalism of own comments; multiple deletions in a short time' ),
110+
( 27, 'ReviewLowQualityDisputedAuto', 'A contentious review needs moderator attention (auto)' ),
111+
( 28, 'PostExcessiveEditsByOwnerAuto', 'More than 10 edits by the original author (auto)' ),
112+
( 29, 'PostExcessiveEditsByOthersAuto', 'More than 10 users have edited this post (auto)' ),
113+
( 30, 'QuestionExcessiveAnswersPostedRecentlyAuto', 'More than 10 answers posted to this question in the past 7 days (auto)' ),
114+
( 31, 'QuestionExcessiveAnswersPostedForAllTimeAuto', 'More than 30 answers posted to this question (auto)' ),
115+
( 32, 'QuestionContestedDuplicateAuto', 'Identifies close/reopen wars between users with binding votes');
87116

88117
-- PostHistoryTypes TABLE
89118
DROP TABLE IF EXISTS PostHistoryTypes;

0 commit comments

Comments
 (0)