diff --git a/src/database/migrations/2015_04_01_000000_PageParts.php b/src/database/migrations/2015_04_01_000000_PageParts.php index a4f8c4b..655fc2b 100644 --- a/src/database/migrations/2015_04_01_000000_PageParts.php +++ b/src/database/migrations/2015_04_01_000000_PageParts.php @@ -16,8 +16,8 @@ public function up() $table->string('name')->index(); $table->string('wysiwyg')->nullable(); - $table->string('content'); - $table->string('content_html'); + $table->text('content'); + $table->text('content_html'); $table->boolean('is_expanded')->default(true); $table->boolean('is_indexable')->default(true);