Skip to content

Commit

Permalink
nullable database
Browse files Browse the repository at this point in the history
  • Loading branch information
Bottelet committed Sep 1, 2017
1 parent 9c47811 commit efef4e0
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -16,9 +16,9 @@ public function up()
$table->increments('id');
$table->string('status');
$table->string('invoice_no')->nullable();
$table->date('sent_at')->nullable();
$table->date('payment_received_at')->nullable();
$table->date('due_at')->nullable();
$table->dateTime('sent_at')->nullable();
$table->dateTime('payment_received_at')->nullable();
$table->dateTime('due_at')->nullable();
$table->integer('client_id')->unsigned();
$table->foreign('client_id')->references('id')->on('clients');
$table->timestamps();
Expand Down

0 comments on commit efef4e0

Please sign in to comment.