diff --git a/database/migrations/2020_08_08_114112_create_articles_table.php b/database/migrations/2020_08_08_114112_create_articles_table.php index d41134f..98e5ed3 100644 --- a/database/migrations/2020_08_08_114112_create_articles_table.php +++ b/database/migrations/2020_08_08_114112_create_articles_table.php @@ -19,6 +19,7 @@ class CreateArticlesTable extends Migration $table->string('author')->nullable(); $table->string('featured_image'); $table->text('body'); + $table->string("guid")->nullable(); $table->unsignedBigInteger('source_id'); $table->dateTime('published_date'); $table->timestamps();