line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package DBIx::Class::Schema::Diff::State; |
2
|
5
|
|
|
5
|
|
40
|
use strict; |
|
5
|
|
|
|
|
13
|
|
|
5
|
|
|
|
|
170
|
|
3
|
5
|
|
|
5
|
|
30
|
use warnings; |
|
5
|
|
|
|
|
11
|
|
|
5
|
|
|
|
|
170
|
|
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
# ABSTRACT: Diff object of a single schema |
6
|
|
|
|
|
|
|
|
7
|
5
|
|
|
5
|
|
30
|
use Moo; |
|
5
|
|
|
|
|
10
|
|
|
5
|
|
|
|
|
50
|
|
8
|
|
|
|
|
|
|
extends 'DBIx::Class::Schema::Diff'; |
9
|
|
|
|
|
|
|
#with 'DBIx::Class::Schema::Diff::Role::Common'; |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
require DBIx::Class::Schema::Diff::Schema; |
12
|
|
|
|
|
|
|
|
13
|
5
|
|
|
5
|
|
2238
|
use Types::Standard qw(:all); |
|
5
|
|
|
|
|
11
|
|
|
5
|
|
|
|
|
43
|
|
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
has 'schema', is => 'ro', isa => Maybe[Str], default => sub { undef }; |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
has '_schema_diff', required => 1, is => 'ro', isa => InstanceOf['DBIx::Class::Schema::Diff::Schema']; |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
around BUILDARGS => sub { |
20
|
|
|
|
|
|
|
my ($orig, $self, @args) = @_; |
21
|
|
|
|
|
|
|
my %opt = (ref($args[0]) eq 'HASH') ? %{ $args[0] } : @args; # <-- arg as hash or hashref |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
die "Must supply single 'schema' not old_schema and new_schema" if ($opt{new_schema} || $opt{old_schema}); |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
unless($opt{_schema_diff}) { |
26
|
|
|
|
|
|
|
my $schema = $opt{schema} or die "schema argument required"; |
27
|
|
|
|
|
|
|
$opt{_schema_diff} = DBIx::Class::Schema::Diff::Schema->new( |
28
|
|
|
|
|
|
|
new_schema => $schema, |
29
|
|
|
|
|
|
|
old_schema => $schema, |
30
|
|
|
|
|
|
|
new_schema_only => 1 |
31
|
|
|
|
|
|
|
) |
32
|
|
|
|
|
|
|
} |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
return $self->$orig(%opt) |
35
|
|
|
|
|
|
|
}; |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
1; |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
__END__ |