increments('id'); $table->date('log_date')->nullable(); $table->text('subject')->nullable(); $table->text('note')->nullable(); $table->integer('owner_id')->nullable(); $table->integer('flat_id')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('logbooks'); } }