Skip to content

Commit

Permalink
Fix some missing down migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrooksuk committed Nov 14, 2016
1 parent f0de9ab commit c1c95de
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ public function up()
*/
public function down()
{
//
Schema::table('components', function (Blueprint $table) {
$table->integer('user_id')->after('group_id');
});
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ public function up()
*/
public function down()
{
//
Schema::table('incidents', function (Blueprint $table) {
$table->integer('user_id')->after('message');
});
}
}

0 comments on commit c1c95de

Please sign in to comment.