From: Jess Robinson <castaway@desert-island.me.uk>
Date: Sat, 29 Apr 2006 18:06:51 +0000 (+0000)
Subject: Document create_ddl_dir method
X-Git-Tag: v0.07002~75^2~223
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=c0f61310b99afbd58564d971aaea89bc196172b5;p=dbsrgits%2FDBIx-Class.git

Document create_ddl_dir method
---

diff --git a/lib/DBIx/Class/Schema.pm b/lib/DBIx/Class/Schema.pm
index 319379a..ff5c868 100644
--- a/lib/DBIx/Class/Schema.pm
+++ b/lib/DBIx/Class/Schema.pm
@@ -714,6 +714,22 @@ sub deploy {
   $self->storage->deploy($self, undef, $sqltargs);
 }
 
+=head2 create_ddl_dir (EXPERIMENTAL)
+
+=over 4
+
+=item Arguments: \@databases, $version, $directory, $sqlt_args
+
+=back
+
+Creates an SQL file based on the Schema, for each of the specified
+database types, in the given directory.
+
+Note that this feature is currently EXPERIMENTAL and may not work correctly
+across all databases, or fully handle complex relationships.
+
+=cut
+
 sub create_ddl_dir
 {
   my $self = shift;