SQL_BIGINT was added in DBI 1.54, so bump the dependency.
* SQLite support for SET NULL, SET DEFAULT and NO ACTION in FK clauses
* Clean up properly after Parser::DBI::PostgreSQL tests
* Fix typos in error messages
+* Add SQL_TINYINT and SQL_BIGINT to the type map in
+ SQL::Translator::Schema::Field
# ----------------------------------------------------------
# 0.11016 2012-10-09
'Digest::SHA' => '0',
'Carp::Clan' => '0',
'Parse::RecDescent' => '1.967009',
- 'DBI' => '0',
+ 'DBI' => '1.54',
'File::ShareDir' => '1.0',
'Moo' => '1.000003',
'Package::Variant' => '1.001001',
integer => SQL_INTEGER,
int => SQL_INTEGER,
+ tinyint => SQL_TINYINT,
smallint => SQL_SMALLINT,
- bigint => 9999, # DBI doesn't export a constant for this. Le suck
+ bigint => SQL_BIGINT,
double => SQL_DOUBLE,