diff options
-rw-r--r-- | Bugzilla/DB/Schema.pm | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/Bugzilla/DB/Schema.pm b/Bugzilla/DB/Schema.pm index a97d3428b..6b596b161 100644 --- a/Bugzilla/DB/Schema.pm +++ b/Bugzilla/DB/Schema.pm @@ -1364,11 +1364,13 @@ C<PRIMARYKEY> (optional), C<REFERENCES> (optional) =back --item B<Returns> +=item B<Returns> A DDL string suitable for describing a field in a C<CREATE TABLE> or C<ALTER TABLE> SQL statement +=back + =cut my $self = shift; @@ -1425,8 +1427,12 @@ Protected method. Translates the C<REFERENCES> item of a column into SQL. =back -Returns: SQL for to define the foreign key, or an empty string - if C<$references> is undefined. +=item B<Returns> + +SQL for to define the foreign key, or an empty string if C<$references> +is undefined. + +=back =cut |