1
0
mirror of https://github.com/flarum/core.git synced 2025-01-18 06:38:25 +01:00

Fix incorrect column name

(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!)
This commit is contained in:
Toby Zerner 2015-01-19 20:42:56 +10:30
parent f08ae1cceb
commit 577d51358d

View File

@ -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();