?>
 columns-custom-width">
    <td>
        <button type="button" class="del-db-column-<?php 
echo $tableUnique;
?>
 btn btn-danger btn-xs"><i class="glyphicon glyphicon-minus"></i></button>
    </td>
    <td>
        <?php 
echo $form->field($column, "[{$i}][{$c}]name")->textInput(['maxlength' => true]);
?>
    </td>
    <td>
        <?php 
echo $form->field($column, "[{$i}][{$c}]type")->dropDownList(['' => ''] + Generator::columnTypes(), ['maxlength' => true]);
?>
    </td>
    <td>
        <?php 
echo $form->field($column, "[{$i}][{$c}]unique")->checkbox();
?>
        <?php 
echo $form->field($column, "[{$i}][{$c}]notNull")->checkbox();
?>
    </td>
    <td>
        <?php 
echo $form->field($column, "[{$i}][{$c}]unsigned")->checkbox();
?>
    </td>