From 986102c1d338af235db7b8ea035a1dade1de163b Mon Sep 17 00:00:00 2001 From: Stephen Finney Date: Sun, 9 Apr 2017 16:12:34 -0400 Subject: [PATCH] Change content column from TEXT to MEDIUMTEXT Fixes #1044 --- ...nge_posts_content_column_to_mediumtext.php | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 migrations/2017_04_09_152230_change_posts_content_column_to_mediumtext.php diff --git a/migrations/2017_04_09_152230_change_posts_content_column_to_mediumtext.php b/migrations/2017_04_09_152230_change_posts_content_column_to_mediumtext.php new file mode 100644 index 000000000..e40ccb544 --- /dev/null +++ b/migrations/2017_04_09_152230_change_posts_content_column_to_mediumtext.php @@ -0,0 +1,27 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +use Illuminate\Database\Schema\Blueprint; +use Illuminate\Database\Schema\Builder; + +return [ + 'up' => function (Builder $schema) { + $schema->table('posts', function (Blueprint $table) { + $table->mediumText('content')->change(); + }); + }, + + 'down' => function (Builder $schema) { + $schema->table('posts', function (Blueprint $table) { + $table->text('content')->change(); + }); + } +];