Budget limit now has period.

This commit is contained in:
James Cole
2020-11-20 06:24:08 +01:00
parent 3dbc74b040
commit c659d67172
7 changed files with 193 additions and 110 deletions

View File

@@ -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);
}
);