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