@@ -487,28 +487,28 @@ The `ipAddress` method creates an `INTEGER` equivalent column:
487
487
<a name =" column-method-json " ></a >
488
488
#### ` json() ` {#collection-method}
489
489
490
- The ` json ` method creates an ` JSON ` equivalent column:
490
+ The ` json ` method creates a ` JSON ` equivalent column:
491
491
492
492
$table->json('options');
493
493
494
494
<a name =" column-method-jsonb " ></a >
495
495
#### ` jsonb() ` {#collection-method}
496
496
497
- The ` jsonb ` method creates an ` JSONB ` equivalent column:
497
+ The ` jsonb ` method creates a ` JSONB ` equivalent column:
498
498
499
499
$table->jsonb('options');
500
500
501
501
<a name =" column-method-lineString " ></a >
502
502
#### ` lineString() ` {#collection-method}
503
503
504
- The ` lineString ` method creates an ` LINESTRING ` equivalent column:
504
+ The ` lineString ` method creates a ` LINESTRING ` equivalent column:
505
505
506
506
$table->lineString('positions');
507
507
508
508
<a name =" column-method-longText " ></a >
509
509
#### ` longText() ` {#collection-method}
510
510
511
- The ` longText ` method creates an ` LONGTEXT ` equivalent column:
511
+ The ` longText ` method creates a ` LONGTEXT ` equivalent column:
512
512
513
513
$table->longText('description');
514
514
@@ -529,14 +529,14 @@ The `mediumIncrements` method creates an auto-incrementing `UNSIGNED MEDIUMINT`
529
529
<a name =" column-method-mediumInteger " ></a >
530
530
#### ` mediumInteger() ` {#collection-method}
531
531
532
- The ` mediumInteger ` method creates an ` MEDIUMINT ` equivalent column:
532
+ The ` mediumInteger ` method creates a ` MEDIUMINT ` equivalent column:
533
533
534
534
$table->mediumInteger('votes');
535
535
536
536
<a name =" column-method-mediumText " ></a >
537
537
#### ` mediumText() ` {#collection-method}
538
538
539
- The ` mediumText ` method creates an ` MEDIUMTEXT ` equivalent column:
539
+ The ` mediumText ` method creates a ` MEDIUMTEXT ` equivalent column:
540
540
541
541
$table->mediumText('description');
542
542
@@ -552,21 +552,21 @@ This method is intended to be used when defining the columns necessary for a pol
552
552
<a name =" column-method-multiLineString " ></a >
553
553
#### ` multiLineString() ` {#collection-method}
554
554
555
- The ` multiLineString ` method creates an ` MULTILINESTRING ` equivalent column:
555
+ The ` multiLineString ` method creates a ` MULTILINESTRING ` equivalent column:
556
556
557
557
$table->multiLineString('positions');
558
558
559
559
<a name =" column-method-multiPoint " ></a >
560
560
#### ` multiPoint() ` {#collection-method}
561
561
562
- The ` multiPoint ` method creates an ` MULTIPOINT ` equivalent column:
562
+ The ` multiPoint ` method creates a ` MULTIPOINT ` equivalent column:
563
563
564
564
$table->multiPoint('positions');
565
565
566
566
<a name =" column-method-multiPolygon " ></a >
567
567
#### ` multiPolygon() ` {#collection-method}
568
568
569
- The ` multiPolygon ` method creates an ` MULTIPOLYGON ` equivalent column:
569
+ The ` multiPolygon ` method creates a ` MULTIPOLYGON ` equivalent column:
570
570
571
571
$table->multiPolygon('positions');
572
572
@@ -594,14 +594,14 @@ The method is similar to the [uuidMorphs](#column-method-uuidMorphs) method; how
594
594
<a name =" column-method-point " ></a >
595
595
#### ` point() ` {#collection-method}
596
596
597
- The ` point ` method creates an ` POINT ` equivalent column:
597
+ The ` point ` method creates a ` POINT ` equivalent column:
598
598
599
599
$table->point('position');
600
600
601
601
<a name =" column-method-polygon " ></a >
602
602
#### ` polygon() ` {#collection-method}
603
603
604
- The ` polygon ` method creates an ` POLYGON ` equivalent column:
604
+ The ` polygon ` method creates a ` POLYGON ` equivalent column:
605
605
606
606
$table->polygon('position');
607
607
@@ -615,7 +615,7 @@ The `rememberToken` method creates a nullable, `VARCHAR(100)` equivalent column
615
615
<a name =" column-method-set " ></a >
616
616
#### ` set() ` {#collection-method}
617
617
618
- The ` set ` method creates an ` SET ` equivalent column with the given list of valid values:
618
+ The ` set ` method creates a ` SET ` equivalent column with the given list of valid values:
619
619
620
620
$table->set('flavors', ['strawberry', 'vanilla']);
621
621
@@ -629,7 +629,7 @@ The `smallIncrements` method creates an auto-incrementing `UNSIGNED SMALLINT` eq
629
629
<a name =" column-method-smallInteger " ></a >
630
630
#### ` smallInteger() ` {#collection-method}
631
631
632
- The ` smallInteger ` method creates an ` SMALLINT ` equivalent column:
632
+ The ` smallInteger ` method creates a ` SMALLINT ` equivalent column:
633
633
634
634
$table->smallInteger('votes');
635
635
@@ -650,42 +650,42 @@ The `softDeletes` method adds a nullable `deleted_at` `TIMESTAMP` equivalent col
650
650
<a name =" column-method-string " ></a >
651
651
#### ` string() ` {#collection-method}
652
652
653
- The ` string ` method creates an ` VARCHAR ` equivalent column of the given length:
653
+ The ` string ` method creates a ` VARCHAR ` equivalent column of the given length:
654
654
655
655
$table->string('name', 100);
656
656
657
657
<a name =" column-method-text " ></a >
658
658
#### ` text() ` {#collection-method}
659
659
660
- The ` text ` method creates an ` TEXT ` equivalent column:
660
+ The ` text ` method creates a ` TEXT ` equivalent column:
661
661
662
662
$table->text('description');
663
663
664
664
<a name =" column-method-timeTz " ></a >
665
665
#### ` timeTz() ` {#collection-method}
666
666
667
- The ` timeTz ` method creates an ` TIME ` (with timezone) equivalent column with an optional precision (total digits):
667
+ The ` timeTz ` method creates a ` TIME ` (with timezone) equivalent column with an optional precision (total digits):
668
668
669
669
$table->timeTz('sunrise', $precision = 0);
670
670
671
671
<a name =" column-method-time " ></a >
672
672
#### ` time() ` {#collection-method}
673
673
674
- The ` time ` method creates an ` TIME ` equivalent column with an optional precision (total digits):
674
+ The ` time ` method creates a ` TIME ` equivalent column with an optional precision (total digits):
675
675
676
676
$table->time('sunrise', $precision = 0);
677
677
678
678
<a name =" column-method-timestampTz " ></a >
679
679
#### ` timestampTz() ` {#collection-method}
680
680
681
- The ` timestampTz ` method creates an ` TIMESTAMP ` (with timezone) equivalent column with an optional precision (total digits):
681
+ The ` timestampTz ` method creates a ` TIMESTAMP ` (with timezone) equivalent column with an optional precision (total digits):
682
682
683
683
$table->timestampTz('added_at', $precision = 0);
684
684
685
685
<a name =" column-method-timestamp " ></a >
686
686
#### ` timestamp() ` {#collection-method}
687
687
688
- The ` timestamp ` method creates an ` TIMESTAMP ` equivalent column with an optional precision (total digits):
688
+ The ` timestamp ` method creates a ` TIMESTAMP ` equivalent column with an optional precision (total digits):
689
689
690
690
$table->timestamp('added_at', $precision = 0);
691
691
@@ -713,7 +713,7 @@ The `tinyIncrements` method creates an auto-incrementing `UNSIGNED TINYINT` equi
713
713
<a name =" column-method-tinyInteger " ></a >
714
714
#### ` tinyInteger() ` {#collection-method}
715
715
716
- The ` tinyInteger ` method creates an ` TINYINT ` equivalent column:
716
+ The ` tinyInteger ` method creates a ` TINYINT ` equivalent column:
717
717
718
718
$table->tinyInteger('votes');
719
719
@@ -771,14 +771,14 @@ This method is intended to be used when defining the columns necessary for a pol
771
771
<a name =" column-method-uuid " ></a >
772
772
#### ` uuid() ` {#collection-method}
773
773
774
- The ` uuid ` method creates an ` UUID ` equivalent column:
774
+ The ` uuid ` method creates a ` UUID ` equivalent column:
775
775
776
776
$table->uuid('id');
777
777
778
778
<a name =" column-method-year " ></a >
779
779
#### ` year() ` {#collection-method}
780
780
781
- The ` year ` method creates an ` YEAR ` equivalent column:
781
+ The ` year ` method creates a ` YEAR ` equivalent column:
782
782
783
783
$table->year('birth_year');
784
784
0 commit comments