about summary refs log tree commit diff
path: root/lib/jitterbug/Schema/Result
diff options
context:
space:
mode:
authorfranck cuny <franck@lumberjaph.net>2011-02-13 16:20:46 +0100
committerfranck cuny <franck@lumberjaph.net>2011-02-13 16:20:46 +0100
commit7ba102a0b05decfeb046e541d0f76902a071e9d7 (patch)
tree898fd14726300d335cdaa11d38b2de868d3eb29d /lib/jitterbug/Schema/Result
parentresolve merge conflict (diff)
parentadd more tests (diff)
downloadjitterbug-7ba102a0b05decfeb046e541d0f76902a071e9d7.tar.gz
Merge branch 'feature/stack_builds' into devel devel
* feature/stack_builds:
  add more tests
  inside the hook, we check if we can add more than one task for this project
  add configuration option to skip some branches; add tests for the Hook
  that's why we want datetime
  use DateTime
Diffstat (limited to 'lib/jitterbug/Schema/Result')
-rw-r--r--lib/jitterbug/Schema/Result/Task.pm1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/jitterbug/Schema/Result/Task.pm b/lib/jitterbug/Schema/Result/Task.pm
index 2eaed62..ad880d8 100644
--- a/lib/jitterbug/Schema/Result/Task.pm
+++ b/lib/jitterbug/Schema/Result/Task.pm
@@ -25,7 +25,6 @@ __PACKAGE__->add_columns(
 );
 
 __PACKAGE__->set_primary_key('taskid');
-__PACKAGE__->add_unique_constraint( [qw/projectid/] );
 __PACKAGE__->add_unique_constraint( [qw/sha256/] );
 __PACKAGE__->belongs_to(
     project => 'jitterbug::Schema::Result::Project',