increments('id'); $table->string('url'); $table->string('name')->nullable(); $table->text('content')->nullable(); $table->uuid('screenshot')->nullable(); $table->string('archive')->nullable(); $table->jsonb('syndicates')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('bookmarks'); } }