increments('id'); $table->string('Name', 50)->nullable(); $table->string('Email', 50)->nullable(); $table->string('Password', 50)->nullable(); $table->string('Employee_id', 50)->nullable(); $table->string('Category', 50)->nullable(); $table->text('marking', 200)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('litecms_employee_employes'); } }