Add cockroachdb table comments.

This commit is contained in:
go-jet 2026-02-03 12:43:37 +01:00
parent a8b1782130
commit 1fae6502b3
5 changed files with 82 additions and 31 deletions

View file

@ -70,7 +70,9 @@ var allTypesJSON = `
"Text": "text",
"TextPtr": "text-ptr",
"Blob": "YmxvYjE=",
"BlobPtr": "YmxvYi1wdHI="
"BlobPtr": "YmxvYi1wdHI=",
"JSON": "{\"key1\": \"value1\", \"key2\": \"value2\"}",
"JSONPtr": "{\"key1\": \"value1\", \"key2\": \"value2\"}"
},
{
"Boolean": false,
@ -110,7 +112,9 @@ var allTypesJSON = `
"Text": "text",
"TextPtr": null,
"Blob": "YmxvYjI=",
"BlobPtr": null
"BlobPtr": null,
"JSON": "{\"key1\": \"value1\", \"key2\": \"value2\"}",
"JSONPtr": null
}
]
`