Skip to content
This repository was archived by the owner on May 19, 2020. It is now read-only.

Commit a8002d7

Browse files
committed
Changing type of column in migration
1 parent 85d13d4 commit a8002d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

database/migrations/2017_09_09_215822_create_sections_table.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public function up()
1515
{
1616
Schema::create('sections', function (Blueprint $table) {
1717
$table->increments('id');
18-
$table->string('content');
18+
$table->text('content');
1919
$table->unsignedInteger('file_id');
2020
$table->timestamps();
2121

0 commit comments

Comments
 (0)