From 263385555c0f65c018f50637455bef9f69ca3e92 Mon Sep 17 00:00:00 2001 From: Toby Zerner Date: Mon, 19 Jan 2015 20:42:56 +1030 Subject: [PATCH] Fix incorrect column name MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (Sorry about the retrograde migration changes, but I figure it isn’t problematic at this stage because we can just reseed. It’s nice to keep things clean as long as we can!) --- .../src/migrations/2014_01_14_231350_create_posts_table.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/core/src/migrations/2014_01_14_231350_create_posts_table.php b/framework/core/src/migrations/2014_01_14_231350_create_posts_table.php index 3e0ebbb18..4d71098c8 100644 --- a/framework/core/src/migrations/2014_01_14_231350_create_posts_table.php +++ b/framework/core/src/migrations/2014_01_14_231350_create_posts_table.php @@ -24,7 +24,7 @@ class CreatePostsTable extends Migration { $table->integer('user_id')->unsigned()->nullable(); $table->string('type')->nullable(); $table->text('content'); - $table->text('html_content'); + $table->text('content_html'); $table->dateTime('edit_time')->nullable(); $table->integer('edit_user_id')->unsigned()->nullable();