Skip to content

Commit a0a62cc

Browse files
committed
Add link to documentation
1 parent f884da9 commit a0a62cc

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/ast/ddl.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,7 @@ pub enum AlterTableOperation {
192192
/// `DISABLE ROW LEVEL SECURITY`
193193
///
194194
/// Note: this is a PostgreSQL-specific operation.
195+
/// Please refer to [PostgreSQL documentation](https://www.postgresql.org/docs/current/sql-altertable.html)
195196
DisableRowLevelSecurity,
196197
/// `DISABLE RULE rewrite_rule_name`
197198
///
@@ -318,14 +319,17 @@ pub enum AlterTableOperation {
318319
/// `ENABLE ROW LEVEL SECURITY`
319320
///
320321
/// Note: this is a PostgreSQL-specific operation.
322+
/// Please refer to [PostgreSQL documentation](https://www.postgresql.org/docs/current/sql-altertable.html)
321323
EnableRowLevelSecurity,
322324
/// `FORCE ROW LEVEL SECURITY`
323325
///
324326
/// Note: this is a PostgreSQL-specific operation.
327+
/// Please refer to [PostgreSQL documentation](https://www.postgresql.org/docs/current/sql-altertable.html)
325328
ForceRowLevelSecurity,
326329
/// `NO FORCE ROW LEVEL SECURITY`
327330
///
328331
/// Note: this is a PostgreSQL-specific operation.
332+
/// Please refer to [PostgreSQL documentation](https://www.postgresql.org/docs/current/sql-altertable.html)
329333
NoForceRowLevelSecurity,
330334
/// `ENABLE RULE rewrite_rule_name`
331335
///

0 commit comments

Comments
 (0)