mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
INA-5 | use soft deletes
This commit is contained in:
parent
05a1d0c0e6
commit
5b744a9123
@ -30,6 +30,7 @@ class CreateScheduledJobsTable extends Migration
|
||||
$table->foreignIdFor(\App\Models\Company::class);
|
||||
$table->foreignIdFor(\App\Models\Scheduler::class);
|
||||
$table->timestamps();
|
||||
$table->softDeletes();
|
||||
});
|
||||
}
|
||||
|
||||
|
@ -31,6 +31,7 @@ class CreateSchedulersTable extends Migration
|
||||
$table->timestamp('scheduled_run');
|
||||
$table->foreignIdFor(\App\Models\Company::class);
|
||||
$table->timestamps();
|
||||
$table->softDeletes();
|
||||
});
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user