dbfdg bigIncrements('id'); $table->integer('employee_id')->default(0); $table->integer('designation_id')->default(0); $table->string('promotion_title')->nullable(); $table->date('promotion_date'); $table->string('description')-> nullable(); $table->string('created_by'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('promotions'); } }