Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 1.36 KB

mongoNoDropCollection.md

File metadata and controls

34 lines (27 loc) · 1.36 KB

mongoNoDropCollection

No drop() statements allowed.

regex: (?i:drop)

Sample Failing Scripts

db.restaurant.drop();

Sample Error Message

CHANGELOG CHECKS
----------------
Checks completed validation of the changelog and found the following issues:

Check Name:         Check for specific patterns in sql (mongoNoDropCollection)
Changeset ID:       drop_restaurant
Changeset Filepath: DBScripts/MongoDB/mongochangelog.js
Check Severity:     BLOCKER (Return code: 4)
Message:            Error! DROP COLLECTION not allowed in MongoDB scripts.

Step-by-Step

Prompt Command or User Input
> liquibase checks customize --check-name=SqlUserDefinedPatternCheck
Give your check a short name for easier identification (up to 64 alpha-numeric characters only) [SqlUserDefinedPatternCheck1]: mongoNoDropCollection
Set the Severity to return a code of 0-4 when triggered. (options: 'INFO'=0, 'MINOR'=1, 'MAJOR'=2, 'CRITICAL'=3, 'BLOCKER'=4)? [INFO]: <Choose a value: 0, 1, 2, 3, 4>
Set 'SEARCH_STRING' (options: a string, or a valid regular expression): (?i:drop)
Set 'MESSAGE' [A match for regular expression <SEARCH_STRING> was detected in Changeset .]: Error! DROP COLLECTION not allowed in MongoDB scripts.
Set 'STRIP_COMMENTS' (options: true, false) [true]: true