Skip to content

Commit 86eef6f

Browse files
committed
updated docs
1 parent 08091ed commit 86eef6f

6 files changed

Lines changed: 13 additions & 9 deletions

File tree

src/Schema/Columns/Binary_Column.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* The interface for the binary column.
44
*
5-
* @since 3.0.0
5+
* @since 3.1.0
66
*
77
* @package StellarWP\Schema\Columns
88
*/
@@ -17,7 +17,7 @@
1717
/**
1818
* Class Binary_Column
1919
*
20-
* @since 3.0.0
20+
* @since 3.1.0
2121
*
2222
* @package StellarWP\Schema\Columns
2323
*/

src/Schema/Columns/Blob_Column.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* The class for the blob column.
44
*
5-
* @since 3.0.0
5+
* @since 3.1.0
66
*
77
* @package StellarWP\Schema\Columns
88
*/
@@ -17,7 +17,7 @@
1717
/**
1818
* Class Blob_Column
1919
*
20-
* @since 3.0.0
20+
* @since 3.1.0
2121
*
2222
* @package StellarWP\Schema\Columns
2323
*/

src/Schema/Columns/Boolean_Column.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* The class for the boolean column.
44
*
5-
* @since 3.0.0
5+
* @since 3.1.0
66
*
77
* @package StellarWP\Schema\Columns
88
*/
@@ -18,7 +18,7 @@
1818
/**
1919
* Class Boolean_Column
2020
*
21-
* @since 3.0.0
21+
* @since 3.1.0
2222
*
2323
* @package StellarWP\Schema\Columns
2424
*/

src/Schema/Columns/Column_Types.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@ final class Column_Types {
434434
/**
435435
* The column types that are supported for blob columns.
436436
*
437-
* @since 3.0.0
437+
* @since 3.1.0
438438
*
439439
* @var string[]
440440
*/
@@ -448,7 +448,7 @@ final class Column_Types {
448448
/**
449449
* The column types that are supported for binary columns.
450450
*
451-
* @since 3.0.0
451+
* @since 3.1.0
452452
*
453453
* @var string[]
454454
*/

src/Schema/Columns/PHP_Types.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ final class PHP_Types {
7878
/**
7979
* The PHP type for a blob.
8080
*
81-
* @since 3.0.0
81+
* @since 3.1.0
8282
*
8383
* @var string
8484
*/
@@ -88,6 +88,7 @@ final class PHP_Types {
8888
* The PHP type for a datetime.
8989
*
9090
* @since 3.0.0
91+
* @since 3.1.0 Added the BLOB type.
9192
*
9293
* @var string[]
9394
*/

src/Schema/Columns/String_Column.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
* Class String_Column
2323
*
2424
* @since 3.0.0
25+
* @since 3.1.0 Added the ability to become a primary key.
2526
*
2627
* @package StellarWP\Schema\Columns
2728
*/
@@ -57,6 +58,8 @@ class String_Column extends Column implements Lengthable, Uniquable, Primarable
5758
/**
5859
* Get the length of the column.
5960
*
61+
* @since 3.1.0 Allowed for up to 1024 characters.
62+
*
6063
* @return int The length of the column.
6164
*/
6265
public function get_length(): int {

0 commit comments

Comments
 (0)