Update 2020_08_08_114112_create_articles_table.php

This commit is contained in:
2020-08-10 03:22:21 +05:00
parent 9b9898252d
commit af7662b215

View File

@@ -16,6 +16,7 @@ class CreateArticlesTable extends Migration
Schema::create('articles', function (Blueprint $table) { Schema::create('articles', function (Blueprint $table) {
$table->uuid('id')->primary(); $table->uuid('id')->primary();
$table->string('title'); $table->string('title');
$table->string('url');
$table->string('author')->nullable(); $table->string('author')->nullable();
$table->string('featured_image'); $table->string('featured_image');
$table->text('body'); $table->text('body');