Update 2020_08_08_114112_create_articles_table.php

This commit is contained in:
2020-08-09 04:21:43 +05:00
parent 82a6cade86
commit 62dc86433d

View File

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