line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Database::Migrator::Types; |
2
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
4
|
use strict; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
23
|
|
4
|
1
|
|
|
1
|
|
3
|
use warnings; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
31
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
our $VERSION = '0.12'; |
7
|
|
|
|
|
|
|
|
8
|
1
|
|
|
1
|
|
362
|
use MooseX::Types::Moose; |
|
1
|
|
|
|
|
37669
|
|
|
1
|
|
|
|
|
8
|
|
9
|
1
|
|
|
1
|
|
4483
|
use MooseX::Types::Path::Class; |
|
1
|
|
|
|
|
302901
|
|
|
1
|
|
|
|
|
9
|
|
10
|
1
|
|
|
1
|
|
720
|
use Path::Class (); |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
23
|
|
11
|
|
|
|
|
|
|
|
12
|
1
|
|
|
1
|
|
4
|
use parent 'MooseX::Types::Combine'; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
6
|
|
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
__PACKAGE__->provide_types_from( |
15
|
|
|
|
|
|
|
'MooseX::Types::Moose', |
16
|
|
|
|
|
|
|
'MooseX::Types::Path::Class', |
17
|
|
|
|
|
|
|
); |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
1; |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
# ABSTRACT: Type library for use by Database::Migrator |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
__END__ |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=pod |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=encoding UTF-8 |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head1 NAME |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
Database::Migrator::Types - Type library for use by Database::Migrator |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=head1 VERSION |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
version 0.12 |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=for Pod::Coverage .* |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head1 SUPPORT |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
Bugs may be submitted through L<https://github.com/maxmind/Database-Migrator/issues>. |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=head1 AUTHOR |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
Dave Rolsky <autarch@urth.org> |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
This software is Copyright (c) 2012 - 2017 by MaxMind, Inc. |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
This is free software, licensed under: |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
The Artistic License 2.0 (GPL Compatible) |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
=cut |