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 98e5ed3..7cdf5aa 100644 --- a/database/migrations/2020_08_08_114112_create_articles_table.php +++ b/database/migrations/2020_08_08_114112_create_articles_table.php @@ -16,6 +16,7 @@ class CreateArticlesTable extends Migration Schema::create('articles', function (Blueprint $table) { $table->uuid('id')->primary(); $table->string('title'); + $table->string('url'); $table->string('author')->nullable(); $table->string('featured_image'); $table->text('body');