Quick fix decimal amount in activity.
This commit is contained in:
@@ -14,7 +14,7 @@ public function up(): void
|
||||
Schema::create('activities', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->date('due_date')->nullable();
|
||||
$table->decimal('amount', 4)->nullable();
|
||||
$table->decimal('amount', 8, 4)->nullable();
|
||||
$table->text('note')->default('');
|
||||
$table->foreignIdFor(\App\Models\Action::class);
|
||||
$table->foreignIdFor(\App\Models\Decision::class);
|
||||
|
||||
Reference in New Issue
Block a user