/[Frey]/trunk/lib/Reblog/Feeds.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/Feeds.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1014 - (hide annotations)
Sun Jan 25 12:57:28 2009 UTC (15 years, 3 months ago) by dpavlin
File size: 1364 byte(s)
DBIC refactor of Reblog into sponge
1 dpavlin 191 package Reblog::Feeds;
2    
3     use strict;
4     use warnings;
5    
6 dpavlin 1014 use base 'DBIx::Class';
7 dpavlin 191
8 dpavlin 1014 __PACKAGE__->load_components("Core");
9     __PACKAGE__->table("feeds");
10     __PACKAGE__->add_columns(
11     "id",
12     { data_type => "INT", default_value => undef, is_nullable => 0, size => 10 },
13     "url",
14     {
15     data_type => "TEXT",
16     default_value => undef,
17     is_nullable => 0,
18     size => 65535,
19     },
20     "title",
21     { data_type => "VARCHAR", default_value => "", is_nullable => 0, size => 255 },
22     "link",
23     {
24     data_type => "VARCHAR",
25     default_value => undef,
26     is_nullable => 1,
27     size => 255,
28     },
29     "description",
30     {
31     data_type => "VARCHAR",
32     default_value => undef,
33     is_nullable => 1,
34     size => 255,
35     },
36     "xml",
37     {
38     data_type => "TEXT",
39     default_value => undef,
40     is_nullable => 1,
41     size => 65535,
42     },
43     "timestamp",
44     {
45     data_type => "TIMESTAMP",
46     default_value => "CURRENT_TIMESTAMP",
47     is_nullable => 0,
48     size => 14,
49     },
50     "insert_timestamp",
51     {
52     data_type => "TIMESTAMP",
53     default_value => "0000-00-00 00:00:00",
54     is_nullable => 0,
55     size => 14,
56     },
57 dpavlin 191 );
58 dpavlin 1014 __PACKAGE__->set_primary_key("id");
59 dpavlin 191
60    
61 dpavlin 1014 # Created by DBIx::Class::Schema::Loader v0.04005 @ 2009-01-24 17:48:45
62     # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Tv+IMxgng1+BpjFN0Zc8bw
63 dpavlin 191
64    
65 dpavlin 1014 # You can replace this text with custom content, and it will be preserved on regeneration
66 dpavlin 191 1;

  ViewVC Help
Powered by ViewVC 1.1.26