mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-14 00:04:24 +00:00
Fixed tests.
This commit is contained in:
@@ -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');
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
Reference in New Issue
Block a user