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