summary refs log tree commit diff
path: root/lib/githubexplorer/Schema/Result
diff options
context:
space:
mode:
authorfranck cuny <franck@lumberjaph.net>2010-01-31 21:41:05 +0100
committerfranck cuny <franck@lumberjaph.net>2010-01-31 21:41:05 +0100
commit35132ef3567b569aeb9bc0355983600bbb4e08a6 (patch)
treee2eabe041c8dfc25e1c8fbb2b4091216f882b288 /lib/githubexplorer/Schema/Result
parentstart to gen. gexf (diff)
downloadgithub-explorer-35132ef3567b569aeb9bc0355983600bbb4e08a6.tar.gz
don't check follow(ers|ing) more than once
Diffstat (limited to 'lib/githubexplorer/Schema/Result')
-rw-r--r--lib/githubexplorer/Schema/Result/Profiles.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/githubexplorer/Schema/Result/Profiles.pm b/lib/githubexplorer/Schema/Result/Profiles.pm
index 376103d..e0349d7 100644
--- a/lib/githubexplorer/Schema/Result/Profiles.pm
+++ b/lib/githubexplorer/Schema/Result/Profiles.pm
@@ -18,7 +18,8 @@ __PACKAGE__->add_columns(
     name              => { data_type => 'varchar', is_nullable => 1 },
     public_gist_count => { data_type => 'int' },
     public_repo_count => { data_type => 'int' },
-    depth             => { data_type => 'boolean' },
+    depth             => { data_type => 'int' },
+    done              => { data_type => 'boolean', default_value => 0 },
     perl_total_bytes =>
         { data_type => 'int', is_nullable => 1, default_value => 0 },
 );