]> git.donarmstrong.com Git - debbugs.git/blob - Debbugs/DB/ResultSet/BinAssociation.pm
5756199f09fe3ca6f24d91f97bc568e0dd3d42ed
[debbugs.git] / Debbugs / DB / ResultSet / BinAssociation.pm
1 # This module is part of debbugs, and is released
2 # under the terms of the GPL version 2, or any later version. See the
3 # file README and COPYING for more information.
4 # Copyright 2017 by Don Armstrong <don@donarmstrong.com>.
5 use utf8;
6 package Debbugs::DB::ResultSet::BinAssociation;
7
8 =head1 NAME
9
10 Debbugs::DB::ResultSet::BinAssociation - Binary/Suite Associations
11
12 =head1 SYNOPSIS
13
14
15
16 =head1 DESCRIPTION
17
18
19
20 =cut
21
22 use strict;
23 use warnings;
24
25 use base 'DBIx::Class::ResultSet';
26
27 use Debbugs::DB::Util qw(select_one);
28
29
30 sub insert_suite_bin_ver_association {
31     my ($self,$suite_id,$bin_ver_id) = @_;
32     return $self->result_source->schema->storage->
33         dbh_do(sub {
34                    my ($s,$dbh,$s_id,$bv_id) = @_;
35                    return select_one($dbh,<<'SQL',$s_id,$bv_id);
36 INSERT INTO bin_associations (suite,bin)
37    VALUES (?,?) ON CONFLICT (suite,bin) DO
38     UPDATE SET modified = NOW()
39    RETURNING id;
40 SQL
41                },
42                $suite_id,$bin_ver_id
43               );
44 }
45
46 1;
47
48 __END__