From: Arthur Axel 'fREW' Schmidt Date: Wed, 2 Jun 2010 02:30:44 +0000 (-0500) Subject: Remove undocumentation X-Git-Tag: v0.001000_13~2 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=dbsrgits%2FDBIx-Class-DeploymentHandler.git;a=commitdiff_plain;h=bd254dcb33402092d2d8ac6716e1ad533c2de07c Remove undocumentation --- diff --git a/lib/DBIx/Class/DeploymentHandler/DeployMethod/SQL/Translator.pm b/lib/DBIx/Class/DeploymentHandler/DeployMethod/SQL/Translator.pm index 22f0f9a..3b46764 100644 --- a/lib/DBIx/Class/DeploymentHandler/DeployMethod/SQL/Translator.pm +++ b/lib/DBIx/Class/DeploymentHandler/DeployMethod/SQL/Translator.pm @@ -840,98 +840,3 @@ transaction. The version the schema on your harddrive is at. Defaults to C<< $self->schema->schema_version >>. - -=begin comment - -=head2 __ddl_consume_with_prefix - - $dm->__ddl_consume_with_prefix( 'SQLite', [qw( 1.00 1.01 )], 'upgrade' ) - -This is the meat of the multi-file upgrade/deploy stuff. It returns a list of -files in the order that they should be run for a generic "type" of upgrade. -You should not be calling this in user code. - -=head2 _ddl_schema_consume_filenames - - $dm->__ddl_schema_consume_filenames( 'SQLite', [qw( 1.00 )] ) - -Just a curried L. Get's a list of files for an -initial deploy. - -=head2 _ddl_schema_produce_filename - - $dm->__ddl_schema_produce_filename( 'SQLite', [qw( 1.00 )] ) - -Returns a single file in which an initial schema will be stored. - -=head2 _ddl_schema_up_consume_filenames - - $dm->_ddl_schema_up_consume_filenames( 'SQLite', [qw( 1.00 )] ) - -Just a curried L. Get's a list of files for an -upgrade. - -=head2 _ddl_schema_down_consume_filenames - - $dm->_ddl_schema_down_consume_filenames( 'SQLite', [qw( 1.00 )] ) - -Just a curried L. Get's a list of files for a -downgrade. - -=head2 _ddl_schema_up_produce_filenames - - $dm->_ddl_schema_up_produce_filename( 'SQLite', [qw( 1.00 1.01 )] ) - -Returns a single file in which the sql to upgrade from one schema to another -will be stored. - -=head2 _ddl_schema_down_produce_filename - - $dm->_ddl_schema_down_produce_filename( 'SQLite', [qw( 1.00 1.01 )] ) - -Returns a single file in which the sql to downgrade from one schema to another -will be stored. - -=head2 _resultsource_install_filename - - my $filename_fn = $dm->_resultsource_install_filename('User'); - $dm->$filename_fn('SQLite', '1.00') - -Returns a function which in turn returns a single filename used to install a -single resultsource. Weird interface is convenient for me. Deal with it. - -=head2 _run_sql_and_perl - - $dm->_run_sql_and_perl([qw( list of filenames )]) - -Simply put, this runs the list of files passed to it. If the file ends in -C<.sql> it runs it as sql and if it ends in C<.pl> it runs it as a perl file. - -Depending on L all of the files run will be wrapped in a single -transaction. - -=head2 _prepare_install - - $dm->_prepare_install({ add_drop_table => 0 }, sub { 'file_to_create' }) - -Generates the sql file for installing the database. First arg is simply -L args and the second is a coderef that returns the filename -to store the sql in. - -=head2 _prepare_changegrade - - $dm->_prepare_changegrade('1.00', '1.01', [qw( 1.00 1.01)], 'upgrade') - -Generates the sql file for migrating from one schema version to another. First -arg is the version to start from, second is the version to go to, third is the -L, and last is the -direction of the changegrade, be it 'upgrade' or 'downgrade'. - -=head2 _read_sql_file - - $dm->_read_sql_file('foo.sql') - -Reads a sql file and returns lines in an C. Strips out comments, -transactions, and blank lines. - -=end comment