Browse Source

Add a missing docblock

Yves P 10 years ago
parent
commit
d99be7ef3b
1 changed files with 5 additions and 1 deletions
  1. 5 1
      src/Database/Schema/Table.php

+ 5 - 1
src/Database/Schema/Table.php

@@ -102,13 +102,17 @@ class Table
      */
     const LENGTH_LONG = 4294967295;
 
+    /**
+     * Valid column length that can be used with text type columns
+     *
+     * @var array
+     */
     public static $columnLengths = [
         'tiny' => self::LENGTH_TINY,
         'medium' => self::LENGTH_MEDIUM,
         'long' => self::LENGTH_LONG
     ];
 
-
     /**
      * The valid keys that can be used in a column
      * definition.