new dev release
[dbsrgits/DBIx-Class-Schema-Loader.git] / lib / DBIx / Class / Schema / Loader / DBI / Writing.pm
index f21800f..12506b2 100644 (file)
@@ -1,6 +1,8 @@
 package DBIx::Class::Schema::Loader::DBI::Writing;
 use strict;
 
+our $VERSION = '0.04999_10';
+
 # Empty. POD only.
 
 1;
@@ -18,7 +20,7 @@ DBIx::Class::Schema::Loader::DBI::Writing - Loader subclass writing guide for DB
   use strict;
   use warnings;
   use base 'DBIx::Class::Schema::Loader::DBI';
-  use Carp::Clan qw/^DBIx::Class::Schema::Loader/;
+  use Carp::Clan qw/^DBIx::Class/;
   use Class::C3;
 
   sub _table_uniq_info {
@@ -49,8 +51,9 @@ this information from DBI.
 The base DBI Loader contains generic methods that *should* work for
 everything else in theory, although in practice some DBDs need to
 override one or more of the other methods.  The other methods one might
-likely want to override are: C<_table_pk_info>, C<_table_fk_info>, and
-C<_tables_list>.  See the included DBD drivers for examples of these.
+likely want to override are: C<_table_pk_info>, C<_table_fk_info>,
+C<_tables_list> and C<_extra_column_info>.  See the included DBD drivers
+for examples of these.
 
 =cut