The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
<h3 name="[% source.moniker %]-unique_constraints">Unique Constraints</h3>

<table cellspacing="0" cellpadding="3">
    <tr><th width="20%">Name</th><th width="80%">Columns</th> </tr>
    [% FOREACH source.unique_constraints %]
        [% SET class = loop.count % 2 ? 'odd' : 'even' %]
        [% FILTER collapse %]
            <tr class="[% class %]">
            <td>[% name %]</td>
            <td>[% columns.join( ', ' ) %]</td>
            </tr>
            [% INCLUDE table_comment.tt2 %]
        [% END %]
    [% END %]
</table>