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