increments('id'); $table->tinyInteger('document_id'); $table->tinyInteger('employee_id'); $table->string('file',255); $table->tinyInteger('added_by')->nullable(); $table->tinyInteger('updated_by')->nullable(); $table->tinyInteger('status')->nullable(); $table->tinyInteger('approved_by')->nullable(); $table->softDeletes(); $table->timestamps(); }); } } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('employee_documents'); } }