summary refs log tree commit diff
path: root/lib/githubexplorer/Schema/Result
diff options
context:
space:
mode:
Diffstat (limited to '')
-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 },
 );