Enddate can be NULL.

This commit is contained in:
James Cole 2014-09-09 20:00:15 +02:00
parent f9dc627d84
commit f6586be5e7

View File

@ -32,7 +32,7 @@ class CreateRemindersTable extends Migration
$table->integer('recurring_transaction_id')->unsigned()->nullable();
$table->integer('user_id')->unsigned();
$table->date('startdate');
$table->date('enddate');
$table->date('enddate')->nullable();
$table->boolean('active');