increments('id'); $table->string('name')->nullable(); $table->string('label')->nullable(); $table->integer('sort_order')->nullable(); }); } /** * Drop the backing table. */ public static function migrateDown(): void { Schema::dropIfExists('backend_test_sortable_fixtures'); } }