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' );