This commit is contained in:
SourceDoctor 2020-06-23 19:31:43 +02:00
parent 8f115bdd01
commit a61b119d5f
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ class AlterAvailabilityPercColumn extends Migration
public function up()
{
Schema::table('availability', function (Blueprint $table) {
$table->float('availability_perc', 9, 6)->default(0)->change();
$table->decimal('availability_perc', 9, 6)->default(0)->change();
});
}
/**