mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-15 08:35:00 +00:00
No changes to budget limit for now.
This commit is contained in:
@@ -22,7 +22,11 @@ class ChangesForV431 extends Migration
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
//
|
||||
Schema::table(
|
||||
'budget_limits', function (Blueprint $table) {
|
||||
$table->renameColumn('start_date', 'startdate');
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -39,14 +43,5 @@ class ChangesForV431 extends Migration
|
||||
}
|
||||
);
|
||||
|
||||
// add end date to budget limits, forget budget limit repetitions:
|
||||
Schema::table(
|
||||
'budget_limits', function (Blueprint $table) {
|
||||
$table->renameColumn('startdate', 'start_date');
|
||||
$table->date('end_date');
|
||||
$table->dropColumn('repeat_freq');
|
||||
$table->dropColumn('repeats');
|
||||
}
|
||||
);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user