The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
[Module]
Name=DBIx::Admin::CreateTable
Changelog.Creator=Module::Metadata::Changes V 2.05
Changelog.Parser=Config::IniFiles V 2.82

[V 2.10]
Date=2014-03-10T13:27:00
Comments=- Add Test::Version to the pre-reqs.

[V 2.09]
Date=2014-03-06T09:45:07
Comments= <<EOT
- Adopt Moo. But not Moops - I don't need that level of complexity.
- Move t/pod.t to xt/author/.
- Add t/version.t.
- Add use strict and use warnings to Build.PL and Makefile.PL.
- Newsflash: DBIx::Admin::CreateTable and DBIx::Admin::DSNManager are now used for the author's testing of
DBIx::Admin::TableInfo.
EOT

[V 2.08]
Date=2014-01-30T09:09:00
Comments= <<EOT
- Fix serious bug in create_table(), which did not allow digits in table and sequence names.
Many thanx to Mario Zieschang for reporting this. See RT#92560.
- Replace /usr/bin/perl with /usr/bin/env perl in the scripts.
- Replace common::sense with use strict and use warnings, to get uninit var warnings.
- Rename test files from \d.*.t to *.t.
- Rename CHANGES to Changes as per CPAN::Changes::Spec.
EOT

[V 2.07]
Date=2010-05-21T16:51:00
Comments= <<EOT
- Spelling: MySQL uses auto_increment; SQLite uses autoincrement.
This should have been done for V 2.04.
- Remove references to Moose and namespace::autoclean from 2.06 below.
EOT

[V 2.06]
Date=2010-02-21T12:54:54
Comments= <<EOT
- Remove text 'All rights reserved' (for Debian licensing).
- Remove POD heads 'Required Modules' and 'Changes'.
- Replace personal doc root with /var/www.
EOT

[V 2.05]
Date=2010-02-10T13:52:44
Comments=- Add META.yml. Update MANIFEST.SKIP. Add MANIFEST and MYMETA.yml.

[V 2.04]
Date=2009-09-16T14:12:00
Comments= <<EOT
- Change auto_increment to autoincrement for SQLite.
- Rename Changes.txt to CHANGES.
EOT

[V 2.03]
Date=2008-12-04T15:54:00
Comments=- Change licence text in preparation for Debian packaging

[V 2.02]
Date=2008-11-23T10:08:00
Comments= <<EOT
- Add DBI to Build.PL and Makefile.PL since:
o t/2.syntax.error.t uses it
o CPAN testers were getting errors
o Callers must create a $dbh, but this module doesn't actually use DBI
- Fix typo in Changes.txt on the line 2.01...
- Generate Changelog.ini as I should have with the last version
EOT

[V 2.01]
Date=2008-11-18T10:34:00
Comments= <<EOT
- Add support for SQLite. Note: My code for SQLite uses 'integer primary key auto_increment'
as the definition of the primary key's type. To get the autoincrement part of that to work,
you must provide a NULL - i.e. a Perl undef - for your primary key column when inserting a
new record into the database
EOT

[V 2.00]
Date=2008-11-16T12:06:00
Comments= <<EOT
- Convert various files from DOS to Unix format
- Reformat the source of CreateTable.pm, Build.PL and Makefile.PL, a bit
- Rename the test files (pod.t => 0.pod.t, test.t => 1.test.t)
- Add t/2.syntax.error.t
- Only run tests in t/2.syntax.error.t if $DBI_DSN, $DBI_USER and $DBI_PASS are defined
- Remove eval
- Localize RaiseError in drop_table(), so as to not error when table does not exist
- Make create_table return DBI's errstr() on fail or '' on success, so result can be tested
- Make drop_table return '' on success, so result can be tested (in t/2.syntax.error.t)
- Remove FindBin::Real from list of required modules
EOT

[V 1.04]
Date=2007-08-23T15:31:00
Comments= <<EOT
- Expand docs even more
- Rename generate_sequence_name() to generate_primary_sequence_name()
EOT

[V 1.03]
Date=2007-08-15T13:58:00
Comments=- Expand docs per method with tables documenting behaviour per database vendor

[V 1.02]
Date=2006-06-09T14:54:00
Comments=- Patch sequence handling code to work with Oracle

[V 1.01]
Date=2006-05-16T14:09:00
Comments=- Add methods reset_all_sequences and reset_sequence

[V 1.00]
Date=2006-05-08T14:50:00
Comments=- Original version