Schema sets the database name for the view.
(name string)
| 85 | |
| 86 | // Schema sets the database name for the view. |
| 87 | func (v *ViewBuilder) Schema(name string) *ViewBuilder { |
| 88 | v.schema = name |
| 89 | return v |
| 90 | } |
| 91 | |
| 92 | // IfNotExists appends the `IF NOT EXISTS` clause to the `CREATE VIEW` statement. |
| 93 | func (v *ViewBuilder) IfNotExists() *ViewBuilder { |
no outgoing calls