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. */ public function down(): void { Schema::dropIfExists('items'); } };