mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-11 07:55:51 -06:00
Fixed tests.
This commit is contained in:
parent
1d1eb5ffa8
commit
f01bbefc1f
@ -35,8 +35,8 @@ class ChangesForV3451 extends Migration
|
||||
|
||||
Schema::table(
|
||||
'piggy_banks', function (Blueprint $table) {
|
||||
$table->smallInteger('reminder_skip')->unsigned();
|
||||
$table->boolean('remind_me');
|
||||
//$table->smallInteger('reminder_skip')->unsigned();
|
||||
//$table->boolean('remind_me');
|
||||
$table->enum('reminder', ['day', 'week', 'quarter', 'month', 'year'])->nullable();
|
||||
}
|
||||
);
|
||||
@ -52,8 +52,8 @@ class ChangesForV3451 extends Migration
|
||||
{
|
||||
Schema::table(
|
||||
'piggy_banks', function (Blueprint $table) {
|
||||
$table->dropColumn('reminder_skip');
|
||||
$table->dropColumn('remind_me');
|
||||
//$table->dropColumn('reminder_skip');
|
||||
//$table->dropColumn('remind_me');
|
||||
$table->dropColumn('reminder');
|
||||
}
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user