summary refs log tree commit diff
path: root/lib/githubexplorer/Schema/Result/Language.pm
blob: 2bfe23cc3a302aa354afa38fedd13f10d37a7a2c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
package githubexplorer::Schema::Result::Language;

use base qw/DBIx::Class/;

__PACKAGE__->load_components(qw/Core/);
__PACKAGE__->table('languages');

__PACKAGE__->add_columns( name => { data_type => 'varchar' }, );

__PACKAGE__->set_primary_key('name');

1;