upgrade fixes

This commit is contained in:
Saeed Vaziry
2024-03-23 15:33:36 +01:00
parent 6389e592a4
commit 6529c349b1
5 changed files with 9 additions and 9 deletions

View File

@ -23,7 +23,7 @@ public function up(): void
$table->string('branch')->nullable();
$table->integer('port')->nullable();
$table->string('status')->default('installing');
$table->tinyInteger('progress')->default(0)->nullable();
$table->integer('progress')->default(0)->nullable();
$table->timestamps();
});
}