WithCollation set collation
(collation string)
| 68 | |
| 69 | // WithCollation set collation |
| 70 | func WithCollation(collation string) Option { |
| 71 | return func(o *options) { |
| 72 | o.Collation = collation |
| 73 | } |
| 74 | } |
| 75 | |
| 76 | // WithTablePrefix set table prefix |
| 77 | func WithTablePrefix(p string) Option { |
no outgoing calls
searching dependent graphs…