Add missing attribute to DBIx::Class::DeploymentHandler (force_overwrite)
[dbsrgits/DBIx-Class-DeploymentHandler.git] / lib / DBIx / Class / DeploymentHandler.pm
CommitLineData
b974984a 1package DBIx::Class::DeploymentHandler;
2
a65184c8 3# ABSTRACT: Extensible DBIx::Class deployment
4
b974984a 5use Moose;
b974984a 6
c4f4d4a2 7extends 'DBIx::Class::DeploymentHandler::Dad';
41219a5d 8# a single with would be better, but we can't do that
9# see: http://rt.cpan.org/Public/Bug/Display.html?id=46347
4f73e4ac 10with 'DBIx::Class::DeploymentHandler::WithApplicatorDumple' => {
36009fc8 11 interface_role => 'DBIx::Class::DeploymentHandler::HandlesDeploy',
12 class_name => 'DBIx::Class::DeploymentHandler::DeployMethod::SQL::Translator',
13 delegate_name => 'deploy_method',
5020d6a2 14 attributes_to_assume => [qw(schema schema_version)],
704577c7 15 attributes_to_copy => [qw(
16 ignore_ddl databases script_directory sql_translator_args force_overwrite
17 )],
36009fc8 18 },
19 'DBIx::Class::DeploymentHandler::WithApplicatorDumple' => {
20 interface_role => 'DBIx::Class::DeploymentHandler::HandlesVersioning',
21 class_name => 'DBIx::Class::DeploymentHandler::VersionHandler::Monotonic',
22 delegate_name => 'version_handler',
23 attributes_to_assume => [qw( database_version schema_version to_version )],
24 },
25 'DBIx::Class::DeploymentHandler::WithApplicatorDumple' => {
26 interface_role => 'DBIx::Class::DeploymentHandler::HandlesVersionStorage',
27 class_name => 'DBIx::Class::DeploymentHandler::VersionStorage::Standard',
28 delegate_name => 'version_storage',
29 attributes_to_assume => ['schema'],
30 };
41219a5d 31with 'DBIx::Class::DeploymentHandler::WithReasonableDefaults';
2e68a8e1 32
c8a2f7bd 33sub prepare_version_storage_install {
34 my $self = shift;
35
d9917093 36 $self->prepare_resultsource_install({
37 result_source => $self->version_storage->version_rs->result_source
38 });
c8a2f7bd 39}
40
41sub install_version_storage {
42 my $self = shift;
43
ba99ba44 44 my $version = (shift||{})->{version} || $self->schema_version;
45
d9917093 46 $self->install_resultsource({
ba99ba44 47 result_source => $self->version_storage->version_rs->result_source,
48 version => $version,
d9917093 49 });
c8a2f7bd 50}
51
d794b8ce 52sub prepare_install {
36821446 53 $_[0]->prepare_deploy;
54 $_[0]->prepare_version_storage_install;
d794b8ce 55}
56
53de57ed 57# the following is just a hack so that ->version_storage
58# won't be lazy
59sub BUILD { $_[0]->version_storage }
2e68a8e1 60__PACKAGE__->meta->make_immutable;
61
b974984a 621;
61847972 63
d1ae780e 64#vim: ts=2 sw=2 expandtab
65
66__END__
67
a65184c8 68=head1 SYNOPSIS
e9c19a98 69
70 use aliased 'DBIx::Class::DeploymentHandler' => 'DH';
71 my $s = My::Schema->connect(...);
72
73 my $dh = DH->new({
02a7b8ac 74 schema => $s,
75 databases => 'SQLite',
76 sql_translator_args => { add_drop_table => 0 },
e9c19a98 77 });
78
f7e215c9 79 $dh->prepare_install;
e9c19a98 80
81 $dh->install;
82
83or for upgrades:
84
85 use aliased 'DBIx::Class::DeploymentHandler' => 'DH';
86 my $s = My::Schema->connect(...);
87
88 my $dh = DH->new({
02a7b8ac 89 schema => $s,
90 databases => 'SQLite',
91 sql_translator_args => { add_drop_table => 0 },
e9c19a98 92 });
93
94 $dh->prepare_upgrade(1, 2);
95
96 $dh->upgrade;
97
98=head1 DESCRIPTION
99
100C<DBIx::Class::DeploymentHandler> is, as it's name suggests, a tool for
101deploying and upgrading databases with L<DBIx::Class>. It is designed to be
102much more flexible than L<DBIx::Class::Schema::Versioned>, hence the use of
103L<Moose> and lots of roles.
104
105C<DBIx::Class::DeploymentHandler> itself is just a recommended set of roles
106that we think will not only work well for everyone, but will also yeild the
107best overall mileage. Each role it uses has it's own nuances and
108documentation, so I won't describe all of them here, but here are a few of the
109major benefits over how L<DBIx::Class::Schema::Versioned> worked (and
110L<DBIx::Class::DeploymentHandler::Deprecated> tries to maintain compatibility
111with):
112
113=over
114
e9c19a98 115=item *
116
117Downgrades in addition to upgrades.
118
119=item *
120
121Multiple sql files files per upgrade/downgrade/install.
122
123=item *
124
125Perl scripts allowed for upgrade/downgrade/install.
126
127=item *
128
129Just one set of files needed for upgrade, unlike before where one might need
130to generate C<factorial(scalar @versions)>, which is just silly.
131
132=item *
133
134And much, much more!
135
136=back
137
138That's really just a taste of some of the differences. Check out each role for
139all the details.
140
141=head1 WHERE IS ALL THE DOC?!
142
143C<DBIx::Class::DeploymentHandler> extends
144L<DBIx::Class::DeploymentHandler::Dad>, so that's probably the first place to
145look when you are trying to figure out how everything works.
146
961d42b1 147Next would be to look at all the pieces that fill in the blanks that
e9c19a98 148L<DBIx::Class::DeploymentHandler::Dad> expects to be filled. They would be
61627cf0 149L<DBIx::Class::DeploymentHandler::DeployMethod::SQL::Translator>,
150L<DBIx::Class::DeploymentHandler::VersionHandler::Monotonic>,
151L<DBIx::Class::DeploymentHandler::VersionStorage::Standard>, and
e9c19a98 152L<DBIx::Class::DeploymentHandler::WithReasonableDefaults>.
153
154=method prepare_version_storage_install
155
156 $dh->prepare_version_storage_install
157
158Creates the needed C<.sql> file to install the version storage and not the rest
159of the tables
160
f7e215c9 161=method prepare_install
162
163 $dh->prepare_install
164
165First prepare all the tables to be installed and the prepare just the version
166storage
167
e9c19a98 168=method install_version_storage
169
170 $dh->install_version_storage
171
172Install the version storage and not the rest of the tables
173
d1ae780e 174=head1 THIS SUCKS
175
12d6fbad 176You started your project and weren't using C<DBIx::Class::DeploymentHandler>?
177Lucky for you I had you in mind when I wrote this doc.
d1ae780e 178
ee37360d 179First off, you'll want to just install the C<version_storage>:
d1ae780e 180
181 my $s = My::Schema->connect(...);
f57662ac 182 my $dh = DBIx::Class::DeploymentHandler->({ schema => $s });
d1ae780e 183
184 $dh->prepare_version_storage_install;
185 $dh->install_version_storage;
34ac0a51 186
12d6fbad 187Then set your database version:
188
189 $dh->add_database_version({ version => $s->version });
190
ee37360d 191Now you should be able to use C<DBIx::Class::DeploymentHandler> like normal!
698944cb 192
a66bf899 193=head1 LOGGING
194
195This is a complex tool, and because of that sometimes you'll want to see
8465e767 196what exactly is happening. The best way to do that is to use the built in
197logging functionality. It the standard six log levels; C<fatal>, C<error>,
198C<warn>, C<info>, C<debug>, and C<trace>. Most of those are pretty self
199explanatory. Generally a safe level to see what all is going on is debug,
200which will give you everything except for the exact SQL being run.
201
202To enable the various logging levels all you need to do is set an environment
203variables: C<DBICDH_FATAL>, C<DBICDH_ERROR>, C<DBICDH_WARN>, C<DBICDH_INFO>,
204C<DBICDH_DEBUG>, and C<DBICDH_TRACE>. Each level can be set on it's own,
205but the default is the first three on and the last three off, and the levels
206cascade, so if you turn on trace the rest will turn on automatically.
a66bf899 207
698944cb 208=head1 DONATIONS
209
210If you'd like to thank me for the work I've done on this module, don't give me
211a donation. I spend a lot of free time creating free software, but I do it
212because I love it.
213
214Instead, consider donating to someone who might actually need it. Obviously
215you should do research when donating to a charity, so don't just take my word
26983cf2 216on this. I like Children's Survival Fund:
217L<http://www.childrenssurvivalfund.org>, but there are a host of other
218charities that can do much more good than I will with your money.