We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0de1ccc commit f766a76Copy full SHA for f766a76
2 files changed
tutorials/3-projects.tf
@@ -16,12 +16,20 @@ resource "bytebase_project" "project-one" {
16
# Issue labels
17
issue_labels {
18
value = "schema-change"
19
- color = "#0066CC"
+ color {
20
+ red = 0
21
+ green = 0.4
22
+ blue = 0.8
23
+ }
24
group = "type"
25
}
26
27
value = "data-change"
- color = "#CC6600"
28
29
+ red = 0.8
30
31
+ blue = 0
32
33
34
35
tutorials/5-sql-review.tf
@@ -35,7 +35,7 @@ resource "bytebase_review_config" "sample" {
36
37
rules {
38
- type = "STATEMENT_MAXIMUM_LIMIT_VALUE"
+ type = "STATEMENT_INSERT_ROW_LIMIT"
39
engine = "POSTGRES"
40
level = "ERROR"
41
number_payload = 1000
0 commit comments