CreateTable implements the [dbx.Builder.CreateTable] interface method.
(table string, cols map[string]string, options ...string)
| 73 | |
| 74 | // CreateTable implements the [dbx.Builder.CreateTable] interface method. |
| 75 | func (b *dualDBBuilder) CreateTable(table string, cols map[string]string, options ...string) *dbx.Query { |
| 76 | return b.nonconcurrentDB.CreateTable(table, cols, options...) |
| 77 | } |
| 78 | |
| 79 | // RenameTable implements the [dbx.Builder.RenameTable] interface method. |
| 80 | func (b *dualDBBuilder) RenameTable(oldName, newName string) *dbx.Query { |
no outgoing calls