WithTablePrefix set table prefix
(p string)
| 75 | |
| 76 | // WithTablePrefix set table prefix |
| 77 | func WithTablePrefix(p string) Option { |
| 78 | return func(o *options) { |
| 79 | o.TablePrefix = p |
| 80 | } |
| 81 | } |
| 82 | |
| 83 | // WithColumnPrefix set column prefix |
| 84 | func WithColumnPrefix(p string) Option { |
no outgoing calls