forked from CiderWebmail/CiderWebmail
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
3 changed files
with
68 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
package CiderWebmail::DB::Result::DbVersion; | ||
|
||
# Created by DBIx::Class::Schema::Loader | ||
# DO NOT MODIFY THE FIRST PART OF THIS FILE | ||
|
||
use strict; | ||
use warnings; | ||
|
||
use base 'DBIx::Class::Core'; | ||
|
||
|
||
=head1 NAME | ||
CiderWebmail::DB::Result::DbVersion | ||
=cut | ||
|
||
__PACKAGE__->table("db_version"); | ||
|
||
=head1 ACCESSORS | ||
=head2 version | ||
data_type: 'int' | ||
default_value: 0 | ||
is_nullable: 0 | ||
=cut | ||
|
||
__PACKAGE__->add_columns( | ||
"version", | ||
{ data_type => "int", default_value => 0, is_nullable => 0 }, | ||
); | ||
__PACKAGE__->set_primary_key("version"); | ||
|
||
|
||
# Created by DBIx::Class::Schema::Loader v0.07010 @ 2011-04-19 22:10:08 | ||
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:xCcMFo7HtoQz9rauno9ZsA | ||
|
||
|
||
# You can replace this text with custom code or comments, and it will be preserved on regeneration | ||
1; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters