X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FSchema.pm;h=a50b26b589571f15002a040d56b3fc712ab2fb1f;hb=cb561d1a7f53ab9a2e505d86c64cfc6977b4db78;hp=84e52637de4564fba9cd117b2bf53ebc5ce94e04;hpb=85dea9a95925c5a8c6b15f7ab59d06a737015812;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class/Schema.pm b/lib/DBIx/Class/Schema.pm index 84e5263..a50b26b 100644 --- a/lib/DBIx/Class/Schema.pm +++ b/lib/DBIx/Class/Schema.pm @@ -543,9 +543,9 @@ Attempts to deploy the schema to the current storage =cut sub deploy { - my ($self) = shift; + my ($self, $sqltargs) = @_; $self->throw_exception("Can't deploy without storage") unless $self->storage; - $self->storage->deploy($self); + $self->storage->deploy($self, undef, $sqltargs); } 1;