func (o *Container) RemoveCatalogs(exec boil.Executor, related ...*Catalog) error {
    var err error
    query := fmt.Sprintf(
        "delete from \"catalogs_containers\" where \"container_id\" = $1 and \"catalog_id\" in (%s)",
        strmangle.Placeholders(dialect.IndexPlaceholders, len(related), 2, 1),