/[Frey]/trunk/lib/Reblog/Schema/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

Contents of /trunk/lib/Reblog/Schema/Feeds.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1020 - (show annotations)
Mon Jan 26 14:51:11 2009 UTC (15 years, 3 months ago) by dpavlin
File size: 1372 byte(s)
more dbic fun with resultsets
1 package Reblog::Schema::Feeds;
2
3 use strict;
4 use warnings;
5
6 use base 'DBIx::Class';
7
8 __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 );
58 __PACKAGE__->set_primary_key("id");
59
60
61 # Created by DBIx::Class::Schema::Loader v0.04005 @ 2009-01-25 20:45:36
62 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:kw5AqL7AYTFShl5F78cR4A
63
64
65 # You can replace this text with custom content, and it will be preserved on regeneration
66 1;

  ViewVC Help
Powered by ViewVC 1.1.26