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
{"changes":{"crates/vespertide-cli/Cargo.toml":"Patch","crates/vespertide-naming/Cargo.toml":"Patch","crates/vespertide-planner/Cargo.toml":"Patch","crates/vespertide-core/Cargo.toml":"Patch","crates/vespertide-exporter/Cargo.toml":"Patch","crates/vespertide-macro/Cargo.toml":"Patch","crates/vespertide-config/Cargo.toml":"Patch","crates/vespertide/Cargo.toml":"Patch","crates/vespertide-query/Cargo.toml":"Patch","crates/vespertide-loader/Cargo.toml":"Patch"},"note":"Support boolean type at default","date":"2025-12-24T05:46:19.710280200Z"}
Copy file name to clipboardExpand all lines: schemas/migration.schema.json
+18-3Lines changed: 18 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -43,9 +43,13 @@
43
43
]
44
44
},
45
45
"default": {
46
-
"type": [
47
-
"string",
48
-
"null"
46
+
"anyOf": [
47
+
{
48
+
"$ref": "#/$defs/StringOrBool"
49
+
},
50
+
{
51
+
"type": "null"
52
+
}
49
53
]
50
54
},
51
55
"foreign_key": {
@@ -597,6 +601,17 @@
597
601
}
598
602
]
599
603
},
604
+
"StringOrBool": {
605
+
"description": "A value that can be either a string or a boolean.\nThis is used for default values where boolean columns can use `true`/`false` directly.",
0 commit comments