From 39da217a9ea1f300bc14f1615b2365027dab72dc Mon Sep 17 00:00:00 2001 From: snipe Date: Wed, 29 Jul 2015 22:47:24 -0700 Subject: [PATCH] Fixed table nane for asset_logs in migration --- .../2015_07_29_230054_add_thread_id_to_asset_logs_table.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/database/migrations/2015_07_29_230054_add_thread_id_to_asset_logs_table.php b/app/database/migrations/2015_07_29_230054_add_thread_id_to_asset_logs_table.php index 450f0211f1..878a7f6e30 100644 --- a/app/database/migrations/2015_07_29_230054_add_thread_id_to_asset_logs_table.php +++ b/app/database/migrations/2015_07_29_230054_add_thread_id_to_asset_logs_table.php @@ -15,7 +15,7 @@ public function up() { - Schema::table( 'action_logs', function ( Blueprint $table ) { + Schema::table( 'asset_logs', function ( Blueprint $table ) { $table->integer( 'thread_id', false, true ); $table->index( 'thread_id' ); @@ -30,7 +30,7 @@ public function down() { - Schema::table( 'action_logs', function ( Blueprint $table ) { + Schema::table( 'asset_logs', function ( Blueprint $table ) { $table->dropIndex( 'thread_id' ); $table->dropColumn( 'thread_id' );