increments('gender_id'); $table->uuid('gender_uuid')->unique(); $table->string('code', 10); $table->string('description', 64); $table->timestamps(); $table->integer('created_by')->default(0); $table->integer('updated_by')->default(0); $table->boolean('is_active')->default(1); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('code_gender'); } }