uuid('id')->primary(); $table->string('title'); $table->string('url'); $table->string('author')->nullable(); $table->string('featured_image'); $table->text('body'); $table->string("guid")->nullable(); $table->unsignedBigInteger('source_id'); $table->dateTime('published_date'); $table->json('meta')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('articles'); } }