=head1 NAME DBIx::Class::Migration::Script::Help::downgrade - Downgrade your existing database =head1 SYNOPSIS dbic-migration downgrade --schema_class MyApp::Schema --to_version 2 =head1 DESCRIPTION Run downgrade files to either bring the database into sync with the current schema version, or stop at an intermediate version specified via L =head1 OPTIONS This command accepts the following options. You may learn more about each option by typing C. The following is a summary. =head2 includes (I,lib,libs,include) Optional. Adds the listed paths to @INC. Handy during development when you want to use a development schema class. =head2 to_version aliases:V, Optional This is the target version of the database we are installing. The version named must be have been previously prepared. If not specified, we will use the current C class version. =head2 schema_class (S) Accepts Str. Required. This is the schema we use as the basis for creating, managing and running your deployments. This should be the full package namespace defining your subclass of L. For example C. If the L cannot be loaded, a hard exception will be thrown. =head2 target_dir (D) Optional. When using a C for generating developer level database sandboxes, you may wish to place the sandbox in a directory other than the default (which is under the C directory off the project root). =head2 sandbox_class Aliases: T, sb Accepts: String (default: SqliteSandbox) The class we use to create a developer level database sandbox. You can change this to either 'PostgresqlSandbox' or 'MySQLSandbox', which will create a sandbox using either L or L. =head2 user Aliases: U =head2 password Aliases: P =head2 dsn Connection information to an already created and running instance of a database. If you don't specify this, we will assume you want a developer level sandbox ( See L). =head2 dbic_fixture_class Accepts: String to a Perl Class. Defaults to L Lets you specify a fixture class. =head2 dbic_fixtures_extra_args Accepts: HashRef. Optional Allows you to pass custom arguments to L. =head2 dbic_connect_attrs =head2 dbi_connect_attrs Accepts: HashRef, Optional Lets you send custom attributes at C time to either L or the underlying L and your storage C. =head1 SEE ALSO L, L, L, L =head1 AUTHOR See L for author information =head1 COPYRIGHT & LICENSE See L for copyright and license information =cut