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(); + }); + } +];