2011-12-05 14:29:29 +01:00
|
|
|
use utf8;
|
|
|
|
package Hydra::Schema::SchemaVersion;
|
|
|
|
|
|
|
|
# Created by DBIx::Class::Schema::Loader
|
|
|
|
# DO NOT MODIFY THE FIRST PART OF THIS FILE
|
|
|
|
|
|
|
|
=head1 NAME
|
|
|
|
|
|
|
|
Hydra::Schema::SchemaVersion
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
|
|
use strict;
|
|
|
|
use warnings;
|
|
|
|
|
|
|
|
use base 'DBIx::Class::Core';
|
|
|
|
|
|
|
|
=head1 TABLE: C<SchemaVersion>
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
|
|
__PACKAGE__->table("SchemaVersion");
|
|
|
|
|
|
|
|
=head1 ACCESSORS
|
|
|
|
|
|
|
|
=head2 version
|
|
|
|
|
|
|
|
data_type: 'integer'
|
|
|
|
is_nullable: 0
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
2012-02-29 02:22:49 +01:00
|
|
|
__PACKAGE__->add_columns("version", { data_type => "integer", is_nullable => 0 });
|
2011-12-05 14:29:29 +01:00
|
|
|
|
|
|
|
|
2012-02-29 02:22:49 +01:00
|
|
|
# Created by DBIx::Class::Schema::Loader v0.07014 @ 2012-02-29 00:47:18
|
|
|
|
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:LFD28W0GvvrOOylCM98SEQ
|
2011-12-05 14:29:29 +01:00
|
|
|
|
|
|
|
|
|
|
|
# You can replace this text with custom code or comments, and it will be preserved on regeneration
|
|
|
|
1;
|