increments('province_id'); $table->uuid('province_uuid')->unique(); $table->string('code',64); $table->string('name',64); $table->timestamp('updated_at')->nullable(); $table->timestamp('created_at'); $table->integer('created_by'); $table->integer('updated_by')->nullable(); $table->boolean('is_active')->default(1); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('code_province'); } }