summary refs log tree commit diff
path: root/lib/githubexplorer/Schema
diff options
context:
space:
mode:
authorfranck cuny <franck@lumberjaph.net>2010-01-23 20:28:01 +0100
committerfranck cuny <franck@lumberjaph.net>2010-01-23 20:28:01 +0100
commit8b4f40d0b79736a73704a5bacd8a5d6be50d3f96 (patch)
treea1037d2b807aa50ce992705d98ca78ac55615075 /lib/githubexplorer/Schema
parenttweaking and testing (diff)
downloadgithub-explorer-8b4f40d0b79736a73704a5bacd8a5d6be50d3f96.tar.gz
count perl bytes, some tweaking
Diffstat (limited to 'lib/githubexplorer/Schema')
-rw-r--r--lib/githubexplorer/Schema/Result/Profiles.pm2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/githubexplorer/Schema/Result/Profiles.pm b/lib/githubexplorer/Schema/Result/Profiles.pm
index 001057e..376103d 100644
--- a/lib/githubexplorer/Schema/Result/Profiles.pm
+++ b/lib/githubexplorer/Schema/Result/Profiles.pm
@@ -19,6 +19,8 @@ __PACKAGE__->add_columns(
     public_gist_count => { data_type => 'int' },
     public_repo_count => { data_type => 'int' },
     depth             => { data_type => 'boolean' },
+    perl_total_bytes =>
+        { data_type => 'int', is_nullable => 1, default_value => 0 },
 );
 
 __PACKAGE__->set_primary_key('id');