my $mark_md5 = $2;
# Pull out the version and timestamp from the line above
- ($ver, $ts) = $gen =~ m/^# Created by DBIx::Class::Schema::Loader( v[\d.]+)?( @ [\d-]+ [\d:]+)?\r?\Z/m;
+ ($ver, $ts) = $gen =~ m/^# Created by DBIx::Class::Schema::Loader( v[\d._]+)?( @ [\d-]+ [\d:]+)?\r?\Z/m;
$ver =~ s/^ v// if $ver;
$ts =~ s/^ @ // if $ts;
},
regexes => {
Foo => [
- qr/^\# Created by DBIx::Class::Schema::Loader v[\d.]+$/m,
+ qr/^\# Created by DBIx::Class::Schema::Loader v[\d._]+$/m,
],
},
);