( schema: Schema.brand<Schema.String, B> )
| 852 | * A field that represents a string UUID v7 that is generated on inserts. |
| 853 | * |
| 854 | * @category schemas |
| 855 | * @since 4.0.0 |
| 856 | */ |
| 857 | export const UuidV7Insert = <const B extends string>( |
| 858 | schema: Schema.brand<Schema.String, B> |
| 859 | ): UuidV7Insert<B> => |
| 860 | Field({ |
| 861 | select: schema, |
| 862 | insert: UuidV7WithGenerate(schema), |
| 863 | update: schema, |
| 864 | json: schema |
| 865 | }) |
nothing calls this directly
no test coverage detected
searching dependent graphs…