mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-18 10:16:49 +00:00
Budget limit now has period.
This commit is contained in:
@@ -49,7 +49,7 @@ class ChangesForV550 extends Migration
|
||||
Schema::table(
|
||||
'budget_limits',
|
||||
static function (Blueprint $table) {
|
||||
$table->dropColumn('repeat_freq');
|
||||
$table->dropColumn('period');
|
||||
$table->dropColumn('generated');
|
||||
}
|
||||
);
|
||||
@@ -105,7 +105,7 @@ class ChangesForV550 extends Migration
|
||||
Schema::table(
|
||||
'budget_limits',
|
||||
static function (Blueprint $table) {
|
||||
$table->string('repeat_freq', 12)->nullable();
|
||||
$table->string('period', 12)->nullable();
|
||||
$table->boolean('generated')->default(false);
|
||||
}
|
||||
);
|
||||
|
Reference in New Issue
Block a user