From af7662b215cc2c0532b22a85e436ea68a60cd1ac Mon Sep 17 00:00:00 2001 From: Mohamed Jinas Date: Mon, 10 Aug 2020 03:22:21 +0500 Subject: [PATCH] Update 2020_08_08_114112_create_articles_table.php --- database/migrations/2020_08_08_114112_create_articles_table.php | 1 + 1 file changed, 1 insertion(+) 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');