mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-28 09:51:21 -06:00
Enddate can be NULL.
This commit is contained in:
parent
f9dc627d84
commit
f6586be5e7
@ -32,7 +32,7 @@ class CreateRemindersTable extends Migration
|
|||||||
$table->integer('recurring_transaction_id')->unsigned()->nullable();
|
$table->integer('recurring_transaction_id')->unsigned()->nullable();
|
||||||
$table->integer('user_id')->unsigned();
|
$table->integer('user_id')->unsigned();
|
||||||
$table->date('startdate');
|
$table->date('startdate');
|
||||||
$table->date('enddate');
|
$table->date('enddate')->nullable();
|
||||||
$table->boolean('active');
|
$table->boolean('active');
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user