id(); $table->string('code'); $table->string('number'); $table->text('log'); $table->boolean('force_update')->default(0); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('versions'); } };