about summary refs log tree commit diff
path: root/lib/jitterbug/Schema/Result/Task.pm
diff options
context:
space:
mode:
authorfranck cuny <franck@lumberjaph.net>2011-02-13 16:20:09 +0100
committerfranck cuny <franck@lumberjaph.net>2011-02-13 16:20:09 +0100
commite03879fe743957c24949000d078f4ffe0d2ef02c (patch)
tree613c1dbb2fa0102a15f2e2929c2762b4aacc420d /lib/jitterbug/Schema/Result/Task.pm
parentadd configuration option to skip some branches; add tests for the Hook (diff)
downloadjitterbug-e03879fe743957c24949000d078f4ffe0d2ef02c.tar.gz
inside the hook, we check if we can add more than one task for this
project

the schema is updated to remove the constraint
Diffstat (limited to '')
-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',