Schema-RackTables

 view release on metacpan or  search on metacpan

lib/Schema/RackTables/0_17_0/Result/File.pm  view on Meta::CPAN

    is_nullable => 0,
  },
  "mtime",
  {
    data_type => "datetime",
    datetime_undef_if_invalid => 1,
    is_nullable => 0,
  },
  "atime",
  {
    data_type => "datetime",
    datetime_undef_if_invalid => 1,
    is_nullable => 0,
  },
  "contents",
  { data_type => "longblob", is_nullable => 0 },
  "comment",
  { data_type => "text", is_nullable => 1 },
);

=head1 PRIMARY KEY

=over 4

=item * L</id>

=back

=cut

__PACKAGE__->set_primary_key("id");

=head1 UNIQUE CONSTRAINTS

=head2 C<name>

=over 4

=item * L</name>

=back

=cut

__PACKAGE__->add_unique_constraint("name", ["name"]);

=head1 RELATIONS

=head2 file_links

Type: has_many

Related object: L<Schema::RackTables::0_17_0::Result::FileLink>

=cut

__PACKAGE__->has_many(
  "file_links",
  "Schema::RackTables::0_17_0::Result::FileLink",
  { "foreign.file_id" => "self.id" },
  { cascade_copy => 0, cascade_delete => 0 },
);


# Created by DBIx::Class::Schema::Loader v0.07043 @ 2015-10-22 23:04:34
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:EjDkScgKMLCLmISoFxqX/w


# You can replace this text with custom code or comments, and it will be preserved on regeneration
1;



( run in 1.287 second using v1.01-cache-2.11-cpan-140bd7fdf52 )