/[Frey]/trunk/lib/Reblog/Schema/FeedsUserdata.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Annotation of /trunk/lib/Reblog/Schema/FeedsUserdata.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1020 - (hide annotations)
Mon Jan 26 14:51:11 2009 UTC (15 years, 3 months ago) by dpavlin
File size: 1179 byte(s)
more dbic fun with resultsets
1 dpavlin 1020 package Reblog::Schema::FeedsUserdata;
2    
3     use strict;
4     use warnings;
5    
6     use base 'DBIx::Class';
7    
8     __PACKAGE__->load_components("Core");
9     __PACKAGE__->table("feeds_userdata");
10     __PACKAGE__->add_columns(
11     "feed_id",
12     { data_type => "INT", default_value => 0, is_nullable => 0, size => 10 },
13     "user_id",
14     { data_type => "INT", default_value => 0, is_nullable => 0, size => 10 },
15     "label",
16     { data_type => "VARCHAR", default_value => "", is_nullable => 0, size => 64 },
17     "value_numeric",
18     { data_type => "INT", default_value => undef, is_nullable => 1, size => 11 },
19     "value_short",
20     {
21     data_type => "VARCHAR",
22     default_value => undef,
23     is_nullable => 1,
24     size => 255,
25     },
26     "value_long",
27     {
28     data_type => "TEXT",
29     default_value => undef,
30     is_nullable => 1,
31     size => 65535,
32     },
33     "timestamp",
34     {
35     data_type => "TIMESTAMP",
36     default_value => "CURRENT_TIMESTAMP",
37     is_nullable => 0,
38     size => 14,
39     },
40     );
41    
42    
43     # Created by DBIx::Class::Schema::Loader v0.04005 @ 2009-01-25 20:45:36
44     # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:KhKU2NelIgNoztT3XFRHYQ
45    
46    
47     # You can replace this text with custom content, and it will be preserved on regeneration
48     1;

  ViewVC Help
Powered by ViewVC 1.1.26