Skip to content

Commit 29128c5

Browse files
committed
Fix test
1 parent 32d3f2a commit 29128c5

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/resources/database/migrations/general/2020_03_21_000000_expected_create_timestamps_table.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,13 +89,11 @@ public function up()
8989
$table->dateTime('datetime_useCurrentOnUpdate_useCurrent')->useCurrentOnUpdate()->useCurrent();
9090
$table->dateTime('datetime_nullable')->useCurrentOnUpdate()->nullable();
9191
$table->dateTime('datetime_useCurrent')->useCurrent();
92-
$table->dateTime('datetime_useCurrentOnUpdate')->useCurrentOnUpdate();
9392
$table->timestamp('timestamp_useCurrentOnUpdate_nullable_useCurrent')->useCurrentOnUpdate()->nullable()->useCurrent();
9493
$table->timestamp('timestamp_useCurrentOnUpdate_useCurrent')->useCurrentOnUpdate()->useCurrent();
9594
$table->timestamp('timestamp_nullable')->useCurrentOnUpdate()->nullable();
9695
$table->timestamp('timestamp_useCurrent')->useCurrent();
9796
$table->timestamp('timestamp_useCurrentOnUpdate')->useCurrentOnUpdate()->default('2024-10-08 00:00:00');
98-
9997
});
10098
}
10199

@@ -114,5 +112,6 @@ public function down()
114112
Schema::dropIfExists('not_timestamps2');
115113
Schema::dropIfExists('not_timestamps3');
116114
Schema::dropIfExists('not_timestamps4');
115+
Schema::dropIfExists('use_current_on_update');
117116
}
118117
};

0 commit comments

Comments
 (0)