summary refs log tree commit diff
path: root/lib/jitterbug/Schema/Result/Project.pm
diff options
context:
space:
mode:
authorfranck cuny <franck@lumberjaph.net>2010-10-03 11:36:54 +0200
committerfranck cuny <franck@lumberjaph.net>2010-10-03 11:36:54 +0200
commit96c2d313ad30d649050116ef3f8878db45baa14a (patch)
tree59e0d627e39f787d0710063eab66943126abf9a3 /lib/jitterbug/Schema/Result/Project.pm
parentupdate makefile (diff)
downloadjitterbug-96c2d313ad30d649050116ef3f8878db45baa14a.tar.gz
remove redis, use dbic instead
Diffstat (limited to 'lib/jitterbug/Schema/Result/Project.pm')
-rw-r--r--lib/jitterbug/Schema/Result/Project.pm26
1 files changed, 26 insertions, 0 deletions
diff --git a/lib/jitterbug/Schema/Result/Project.pm b/lib/jitterbug/Schema/Result/Project.pm
new file mode 100644
index 0000000..245b54c
--- /dev/null
+++ b/lib/jitterbug/Schema/Result/Project.pm
@@ -0,0 +1,26 @@
+package jitterbug::Schema::Result::Project;
+use base qw/DBIx::Class::Core/;
+
+__PACKAGE__->table('project');
+__PACKAGE__->add_columns(
+    projectid => {
+        data_type         => 'int',
+        is_auto_increment => 1,
+    },
+    name        => { data_type => 'text', },
+    url         => { data_type => 'text', },
+    description => { data_type => 'text', },
+    owner       => { data_type => 'text', }
+);
+__PACKAGE__->set_primary_key('projectid');
+__PACKAGE__->add_unique_constraint( [qw/name/] );
+__PACKAGE__->has_many(
+    commits => 'jitterbug::Schema::Result::Commit',
+    'sha256',
+);
+__PACKAGE__->has_many(
+    tasks => 'jitterbug::Schema::Result::Task',
+    'taskid',
+);
+
+1;