You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/rules.md
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -12,12 +12,12 @@ Rules that detect potential safety issues in your code.
12
12
13
13
| Rule name | Description | Properties |
14
14
| --- | --- | --- |
15
-
|[addingRequiredField](/rules/adding-required-field)| Adding a new column that is NOT NULL and has no default value to an existing table effectively makes it required. ||
16
-
|[banDropColumn](/rules/ban-drop-column)| Dropping a column may break existing clients. | ✅ |
17
-
|[banDropDatabase](/rules/ban-drop-database)| Dropping a database may break existing clients (and everything else, really). ||
18
-
|[banDropNotNull](/rules/ban-drop-not-null)| Dropping a NOT NULL constraint may break existing clients. | ✅ |
19
-
|[banDropTable](/rules/ban-drop-table)| Dropping a table may break existing clients. | ✅ |
20
-
|[banTruncateCascade](/rules/ban-truncate-cascade)| Using `TRUNCATE`'s `CASCADE` option will truncate any tables that are also foreign-keyed to the specified tables. ||
15
+
|[addingRequiredField](./adding-required-field)| Adding a new column that is NOT NULL and has no default value to an existing table effectively makes it required. ||
16
+
|[banDropColumn](./ban-drop-column)| Dropping a column may break existing clients. | ✅ |
17
+
|[banDropDatabase](./ban-drop-database)| Dropping a database may break existing clients (and everything else, really). ||
18
+
|[banDropNotNull](./ban-drop-not-null)| Dropping a NOT NULL constraint may break existing clients. | ✅ |
19
+
|[banDropTable](./ban-drop-table)| Dropping a table may break existing clients. | ✅ |
20
+
|[banTruncateCascade](./ban-truncate-cascade)| Using `TRUNCATE`'s `CASCADE` option will truncate any tables that are also foreign-keyed to the specified tables. ||
0 commit comments