Create a test for required column with default value.

This commit is contained in:
Sam Rose 2024-07-15 16:46:20 +01:00
parent e39a5b0d7e
commit 9542c497de
No known key found for this signature in database
1 changed files with 3 additions and 0 deletions

View File

@ -563,6 +563,9 @@ describe.each([
name: "description",
type: FieldType.STRING,
default: "default description",
constraints: {
presence: true,
},
},
},
})