Revision history for DBIx::Class
+0.081000 2009-04-19 11:39:35 (UTC)
+ - Todo out the register_extra_source test until after shipping
+
0.08099_08 2009-03-30 00:00:00 (UTC)
- Fixed taint mode with load_namespaces
- Putting IC::DateTime locale, timezone or floating_tz_ok attributes into
- Split sql statements for deploy only if SQLT::Producer returned a scalar
containing all statements to be executed
- Add as_query() for ResultSet and ResultSetColumn. This makes subqueries
- possible. See the Cookbook for details. (robkinyon, michaelr)
+ possible. See the Cookbook for details.
- Massive rewrite of Ordered to properly handle position constraints and
to make it more matpath-friendly
- deploy_statements called ddl_filename with the $version and $dir arguments
+^(?!script/|examples/|lib/|inc/|t/|Makefile.PL$|README$|MANIFEST$|Changes$|META.yml$)
+
+
# Avoid version control files.
\bRCS\b
\bCVS\b
requires 'Scalar::Util' => 0;
requires 'SQL::Abstract' => 1.51;
requires 'SQL::Abstract::Limit' => 0.13;
-requires 'MRO::Compat' => 0;
requires 'Class::C3::Componentised' => 1.0004;
requires 'Storable' => 0;
requires 'Carp::Clan' => 0;
if ($Module::Install::AUTHOR) {
foreach my $module (keys %force_requires_if_author) {
- requires ($module => $force_requires_if_author{$module});
+ build_requires ($module => $force_requires_if_author{$module});
}
system('pod2text lib/DBIx/Class.pm > README');
# i.e. first release of 0.XX *must* be 0.XX000. This avoids fBSD ports
# brain damage and presumably various other packaging systems too
-$VERSION = '0.08099_08';
+$VERSION = '0.08100';
$VERSION = eval $VERSION; # numify for warning-free dev releases
use strict;
use warnings;
-use Test::More;
+use Test::More skip_all => 'Postponed until after 0.08100';
use lib 't/lib';
--
-- Created by SQL::Translator::Producer::SQLite
--- Created on Sun Feb 22 00:15:06 2009
+-- Created on Sun Apr 19 11:49:48 2009
--
CREATE TABLE genre (
genreid INTEGER PRIMARY KEY NOT NULL,
name varchar(100) NOT NULL,
- demographicid INTEGER NOT NULL
+ demographicid integer NOT NULL
);
+CREATE INDEX genre_idx_demographicid_genre ON genre (demographicid);
+
CREATE UNIQUE INDEX genre_name_genre ON genre (name);
--