# Created by DBIx::Class::Schema::Loader v0.03009 @ 2007-03-04 02:50:46 # @(#)$Id: Links.pm 1318 2012-04-22 17:10:47Z pjf $ package App::Munchies::Schema::Catalog::Result::Links; use strict; use warnings; use version; our $VERSION = qv( sprintf '0.7.%d', q$Rev: 1318 $ =~ /\d+/gmx ); use parent qw(App::Munchies::Schema::Base); __PACKAGE__->table('links'); __PACKAGE__->add_columns( 'id', { data_type => 'MEDIUMINT', default_value => undef, is_auto_increment => 1, is_nullable => 0, size => 8 }, 'nid', { data_type => 'MEDIUMINT', default_value => 0, is_nullable => 0, size => 8 }, 'name', { data_type => 'VARCHAR', default_value => '', is_nullable => 0, size => 255 }, 'text', { data_type => 'VARCHAR', default_value => '', is_nullable => 0, size => 255 }, 'url', { data_type => 'VARCHAR', default_value => '', is_nullable => 0, size => 255 }, 'info', { data_type => 'VARCHAR', default_value => '', is_nullable => 0, size => 255 } ); __PACKAGE__->set_primary_key('id'); __PACKAGE__->add_unique_constraint([ 'name' ]); __PACKAGE__->has_one (nodes => 'App::Munchies::Schema::Catalog::Result::Nodes', 'lid'); 1; __END__ =pod =head1 Name App::Munchies::Schema::Catalog::Result::Links - Class definition for the links table =head1 Version 0.7.$Revision: 1318 $ =head1 Synopsis use ; # Brief but working code examples =head1 Description =head1 Subroutines/Methods =head1 Diagnostics =head1 Configuration and Environment =head1 Dependencies =over 3 =item L =back =head1 Incompatibilities There are no known incompatibilities in this module =head1 Bugs and Limitations There are no known bugs in this module. Please report problems to the address below. Patches are welcome =head1 Author Peter Flanigan, C<< >> =head1 License and Copyright Copyright (c) 2008 Peter Flanigan. All rights reserved This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See L This program is distributed in the hope that it will be useful, but WITHOUT WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE =cut # Local Variables: # mode: perl # tab-width: 3 # End: