added objectindex tests for search and add
[dbsrgits/DBIx-Class-Historic.git] / lib / DBIx / Class / PK / Auto / SQLite.pm
CommitLineData
b8e1e21f 1package DBIx::Class::PK::Auto::SQLite;
2
3use strict;
4use warnings;
5
6sub _last_insert_id {
7 return $_[0]->_get_dbh->func('last_insert_rowid');
8}
9
101;