increments('id'); $table->string('title'); $table->string('colour'); $table->string('icon'); $table->string('url'); $table->text('description'); $table->boolean('pinned')->default(false); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('items'); } }