Improve test by adding comment

pull/32/head
Vinícius Garcia 2022-12-17 14:33:21 -03:00
parent 1a1f198803
commit 743d021f7a
1 changed files with 8 additions and 0 deletions

View File

@ -3078,6 +3078,14 @@ func ModifiersTest(
c := newTestDB(db, driver)
// The default value of the column "nullable_field"
// is the string: "not_null".
//
// So the tagged struct below should insert passing NULL
// and the untagged should insert not passing any value
// for this column, thus, only the second one should create
// a recording using the default value.
var taggedUser struct {
ID uint `ksql:"id"`
NullableField *string `ksql:"nullable_field,nullable"`