Description
Use the DROP RULE command to remove a rule from a PostgreSQL database. When a rule is dropped, the change is effective immediately. A rule becomes unavailable as soon as it is dropped, and its definition is completely removed from the database system.
Example
The following example drops the sync_stock_with_editions rule:
booktown=#
DROP RULE sync_stock_with_editions;
DROP