(opt *CreateTableOptions)
| 1247 | } |
| 1248 | |
| 1249 | func (q *Query) CreateTable(opt *CreateTableOptions) error { |
| 1250 | _, err := q.db.ExecContext(q.ctx, NewCreateTableQuery(q, opt)) |
| 1251 | return err |
| 1252 | } |
| 1253 | |
| 1254 | func (q *Query) DropTable(opt *DropTableOptions) error { |
| 1255 | _, err := q.db.ExecContext(q.ctx, NewDropTableQuery(q, opt)) |