increments('id'); $table->integer('user_id')->nullable(); $table->string('user_type', 100)->nullable(); $table->integer('candidate_id')->nullable(); $table->date('date')->nullable(); $table->tinyInteger('early')->nullable(); $table->tinyInteger('late')->nullable(); $table->tinyInteger('night')->nullable(); $table->tinyInteger('unavailable')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('availables'); } }