Set column as unique. When a string name is passed, it enables type-safe `using` in `FindOptions`. (SQL only)
(name: N)
| 169 | index(index?: boolean): PropertyChain<Value, Options>; |
| 170 | /** Set column as unique. When a string name is passed, it enables type-safe `using` in `FindOptions`. (SQL only) */ |
| 171 | unique<N extends string>(name: N): PropertyChain<Value, Omit<Options, 'unique'> & { unique: N }>; |
| 172 | unique(unique?: boolean): PropertyChain<Value, Options>; |
| 173 | comment(comment: string): PropertyChain<Value, Options>; |
| 174 | collation(collation: string): PropertyChain<Value, Options>; |
no outgoing calls
no test coverage detected