mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-01-17 13:38:20 +01:00
Fix missing down migrations
This commit is contained in:
parent
72ff181a02
commit
b5916b7577
@ -30,6 +30,8 @@ class AlterTableComponentsDropUserIdColumn extends Migration
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
//
|
||||
Schema::table('components', function (Blueprint $table) {
|
||||
$table->integer('user_id')->unsigned()->after('group_id');
|
||||
});
|
||||
}
|
||||
}
|
||||
|
@ -30,6 +30,8 @@ class AlterTableIncidentsDropUserIdColumn extends Migration
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
//
|
||||
Schema::table('incidents', function (Blueprint $table) {
|
||||
$table->integer('user_id')->unsigned()->after('message');
|
||||
});
|
||||
}
|
||||
}
|
||||
|
@ -35,7 +35,7 @@ class AlterTableMetricsAddDefaultViewColumn extends Migration
|
||||
public function down()
|
||||
{
|
||||
Schema::table('metrics', function (Blueprint $table) {
|
||||
//
|
||||
$table->dropColumn('default_view');
|
||||
});
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user