use utf8; package TFLMonitor::Schema::Line; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE =head1 NAME TFLMonitor::Schema::Line =cut use strict; use warnings; use base 'DBIx::Class::Core'; =head1 TABLE: C =cut __PACKAGE__->table("line"); =head1 ACCESSORS =head2 id data_type: 'int' is_nullable: 0 =head2 name data_type: 'varchar' is_nullable: 0 size: 255 =cut __PACKAGE__->add_columns( "id", { data_type => "int", is_nullable => 0 }, "name", { data_type => "varchar", is_nullable => 0, size => 255 }, ); =head1 PRIMARY KEY =over 4 =item * L =back =cut __PACKAGE__->set_primary_key("id"); =head1 UNIQUE CONSTRAINTS =head2 C =over 4 =item * L =back =cut __PACKAGE__->add_unique_constraint("name_unique", ["name"]); =head1 RELATIONS =head2 line_statuses Type: has_many Related object: L =cut __PACKAGE__->has_many( "line_statuses", "TFLMonitor::Schema::LineStatus", { "foreign.line_id" => "self.id" }, undef, ); # Created by DBIx::Class::Schema::Loader v0.07040 @ 2014-06-21 15:59:21 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:wkLwtPnKtkjsrMtvsUzijw # You can replace this text with custom content, and it will be preserved on regeneration 1; __END__ =head1 AUTHOR Gianni Ceccarelli =head1 COPYRIGHT AND LICENSE This software is copyright (c) 2012 by Gianni Ceccarelli. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, version 3. =cut