diff --git a/IES-Bandung/database/migrations/2016_04_05_144116_gov_user_log.php b/IES-Bandung/database/migrations/2016_04_05_144116_gov_user_log.php
index a077ee8c95d32122bf28ccdccb36c608a20b4e0a..9aa3cbe8cac8e22cb834e182a7fa715fc12955fc 100644
--- a/IES-Bandung/database/migrations/2016_04_05_144116_gov_user_log.php
+++ b/IES-Bandung/database/migrations/2016_04_05_144116_gov_user_log.php
@@ -13,7 +13,7 @@ class GovUserLog extends Migration
     public function up()
     {
         Schema::create('GovUserLog', function (Blueprint $table) {
-            $table->increments('govUserLogDBID');
+            $table->increments('id');
             $table->integer('govDBID')->unsigned();
             $table->integer('userID')->unsigned();
             $table->bigInteger('nip')->unsigned()->nullable();
diff --git a/IES-Bandung/database/migrations/2016_04_05_144129_vendor_user_log.php b/IES-Bandung/database/migrations/2016_04_05_144129_vendor_user_log.php
index e5e4ec4bc8dad4f96b653661ee857f95279c53bf..1dee62c0586dead26c4a3d83643d0f1c740a1a9a 100644
--- a/IES-Bandung/database/migrations/2016_04_05_144129_vendor_user_log.php
+++ b/IES-Bandung/database/migrations/2016_04_05_144129_vendor_user_log.php
@@ -13,7 +13,7 @@ class VendorUserLog extends Migration
     public function up()
     {
         Schema::create('VendorUserLog', function (Blueprint $table) {
-            $table->increments('vendorUserLogDBID');
+            $table->increments('id');
             $table->integer('vendorDBID')->unsigned();
             $table->integer('userID')->unsigned();
             $table->mediumText('old_place')->nullable();
diff --git a/IES-Bandung/database/migrations/2016_04_05_144150_public_user_log.php b/IES-Bandung/database/migrations/2016_04_05_144150_public_user_log.php
index b41cea7b35ec54d876f51852f92ee00c44c6ca37..a43de2da4472041f9697dfcf8a3b6201e9ef0d5e 100644
--- a/IES-Bandung/database/migrations/2016_04_05_144150_public_user_log.php
+++ b/IES-Bandung/database/migrations/2016_04_05_144150_public_user_log.php
@@ -13,7 +13,7 @@ class PublicUserLog extends Migration
     public function up()
     {
         Schema::create('PublicUserLog', function (Blueprint $table) {
-            $table->increments('publicUserLogDBID');
+            $table->increments('id');
             $table->integer('publicDBID')->unsigned();
             $table->integer('userID')->unsigned();
             $table->string('action');
diff --git a/IES-Bandung/database/migrations/2016_04_05_145431_object_type_log.php b/IES-Bandung/database/migrations/2016_04_05_145431_object_type_log.php
index af1d33c8a600de55bcf6217830098753d503c28a..6da171c4765d53455b4a69bc0b727d7bde0ceeac 100644
--- a/IES-Bandung/database/migrations/2016_04_05_145431_object_type_log.php
+++ b/IES-Bandung/database/migrations/2016_04_05_145431_object_type_log.php
@@ -13,7 +13,7 @@ class ObjectTypeLog extends Migration
     public function up()
     {
         Schema::create('ObjectTypeLog', function (Blueprint $table) {
-            $table->increments('objectTypeLogDBID');
+            $table->increments('id');
             $table->integer('objectTypeID')->unsigned();
             $table->longText('name');
             $table->string('action');
diff --git a/IES-Bandung/database/migrations/2016_04_05_150010_object_sell_log.php b/IES-Bandung/database/migrations/2016_04_05_150010_object_sell_log.php
index e35328c72e8e969773503bbfeeea026cc1165746..fb93002dc87ba290c47a0193ab4af07d88c95cd5 100644
--- a/IES-Bandung/database/migrations/2016_04_05_150010_object_sell_log.php
+++ b/IES-Bandung/database/migrations/2016_04_05_150010_object_sell_log.php
@@ -13,7 +13,7 @@ class ObjectSellLog extends Migration
     public function up()
     {
         Schema::create('ObjectSellLog', function (Blueprint $table) {
-            $table->increments('objectSellLogDBID');
+            $table->increments('id');
             $table->integer('objectSellID')->unsigned();
             $table->integer('vendorDBID')->unsigned();
             $table->string('name');
diff --git a/IES-Bandung/database/migrations/2016_04_05_150338_object_sell_rate_and_review_log.php b/IES-Bandung/database/migrations/2016_04_05_150338_object_sell_rate_and_review_log.php
index f9afda3b3e30e802f9a9d450a292cf58575e2975..0827c0e366c178b5f197a1080df7280d4c360b33 100644
--- a/IES-Bandung/database/migrations/2016_04_05_150338_object_sell_rate_and_review_log.php
+++ b/IES-Bandung/database/migrations/2016_04_05_150338_object_sell_rate_and_review_log.php
@@ -13,7 +13,7 @@ class ObjectSellRateAndReviewLog extends Migration
     public function up()
     {
         Schema::create('ObjectSellRateAndReviewLog', function (Blueprint $table) {
-            $table->increments('osrrLogDBID');
+            $table->increments('id');
             $table->integer('osrrID')->unsigned();
             $table->integer('objectSellID')->unsigned();
             $table->integer('publicDBID')->unsigned();
diff --git a/IES-Bandung/database/migrations/2016_04_05_150657_vendor_rate_and_review_log.php b/IES-Bandung/database/migrations/2016_04_05_150657_vendor_rate_and_review_log.php
index 42fdf61dec56267ea8f42ef91de8b7a98f7b1529..62f06365a0ac626a12f700bd80bcc8a3701d0cc4 100644
--- a/IES-Bandung/database/migrations/2016_04_05_150657_vendor_rate_and_review_log.php
+++ b/IES-Bandung/database/migrations/2016_04_05_150657_vendor_rate_and_review_log.php
@@ -13,7 +13,7 @@ class VendorRateAndReviewLog extends Migration
     public function up()
     {
         Schema::create('VendorRateAndReviewLog', function (Blueprint $table) {
-            $table->increments('vrrLogDBID');
+            $table->increments('id');
             $table->integer('vrrID')->unsigned();
             $table->integer('publicDBID')->unsigned();
             $table->integer('vendorDBID')->unsigned();
diff --git a/IES-Bandung/database/migrations/2016_04_06_020321_user_log.php b/IES-Bandung/database/migrations/2016_04_06_020321_user_log.php
index f441f70b3edab5318776c96e0810e25bf620ddd2..726de1cd2dba02e651e1e953909f83103147fcff 100644
--- a/IES-Bandung/database/migrations/2016_04_06_020321_user_log.php
+++ b/IES-Bandung/database/migrations/2016_04_06_020321_user_log.php
@@ -13,7 +13,7 @@ class UserLog extends Migration
     public function up()
     {
         Schema::create('UserLog', function (Blueprint $table) {
-            $table->increments('userLogDBID');
+            $table->increments('id');
             $table->integer('userID')->unsigned();
             $table->string('username');
             $table->string('email');