4 ALTER RULE — change the definition of a rule
8 ALTER RULE name ON table_name RENAME TO new_name
12 ALTER RULE changes properties of an existing rule. Currently, the only
13 available action is to change the rule's name.
15 To use ALTER RULE, you must own the table or view that the rule applies
21 The name of an existing rule to alter.
24 The name (optionally schema-qualified) of the table or view that
28 The new name for the rule.
32 To rename an existing rule:
33 ALTER RULE notify_all ON emp RENAME TO notify_me;
37 ALTER RULE is a PostgreSQL language extension, as is the entire query
42 CREATE RULE, DROP RULE