]> git.donarmstrong.com Git - debbugs.git/blobdiff - Debbugs/DB/ResultSet/SrcVer.pm
move Debbugs to lib
[debbugs.git] / Debbugs / DB / ResultSet / SrcVer.pm
diff --git a/Debbugs/DB/ResultSet/SrcVer.pm b/Debbugs/DB/ResultSet/SrcVer.pm
deleted file mode 100644 (file)
index 254816c..0000000
+++ /dev/null
@@ -1,50 +0,0 @@
-# This module is part of debbugs, and is released
-# under the terms of the GPL version 2, or any later version. See the
-# file README and COPYING for more information.
-# Copyright 2017 by Don Armstrong <don@donarmstrong.com>.
-use utf8;
-package Debbugs::DB::ResultSet::SrcVer;
-
-=head1 NAME
-
-Debbugs::DB::ResultSet::SrcVer - Source Version association
-
-=head1 SYNOPSIS
-
-
-
-=head1 DESCRIPTION
-
-
-
-=cut
-
-use strict;
-use warnings;
-
-use base 'DBIx::Class::ResultSet';
-
-use Debbugs::DB::Util qw(select_one);
-
-
-sub get_src_ver_id {
-    my ($self,$src_pkg_id,$src_ver,$maint_id) = @_;
-    return $self->result_source->schema->storage->
-       dbh_do(sub {
-                  my ($s,$dbh,$src_pkg_id,$src_ver,$maint_id) = @_;
-                  return select_one($dbh,<<'SQL',
-INSERT INTO src_ver (src_pkg,ver,maintainer)
-   VALUES (?,?,?) ON CONFLICT (src_pkg,ver) DO
-     UPDATE SET maintainer = ?
-   RETURNING id;
-SQL
-                                    $src_pkg_id,$src_ver,
-                                    $maint_id,$maint_id);
-              },
-              $src_pkg_id,$src_ver,$maint_id
-             );
-}
-
-1;
-
-__END__