fixed table name guideArticles -> guide_articles

This commit is contained in:
Anders 2020-08-04 13:35:16 +02:00
parent f5a0174939
commit 9ed3faedfe
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ class CreateGuidesTable extends Migration
$table->id(); $table->id();
$table->timestamps(); $table->timestamps();
$table->string('name'); $table->string('name');
$table->longText('guideArticles'); $table->longText('guide_articles');
}); });
} }