File tree 1 file changed +1
-2
lines changed
tests/resources/database/migrations/general 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -89,13 +89,11 @@ public function up()
89
89
$ table ->dateTime ('datetime_useCurrentOnUpdate_useCurrent ' )->useCurrentOnUpdate ()->useCurrent ();
90
90
$ table ->dateTime ('datetime_nullable ' )->useCurrentOnUpdate ()->nullable ();
91
91
$ table ->dateTime ('datetime_useCurrent ' )->useCurrent ();
92
- $ table ->dateTime ('datetime_useCurrentOnUpdate ' )->useCurrentOnUpdate ();
93
92
$ table ->timestamp ('timestamp_useCurrentOnUpdate_nullable_useCurrent ' )->useCurrentOnUpdate ()->nullable ()->useCurrent ();
94
93
$ table ->timestamp ('timestamp_useCurrentOnUpdate_useCurrent ' )->useCurrentOnUpdate ()->useCurrent ();
95
94
$ table ->timestamp ('timestamp_nullable ' )->useCurrentOnUpdate ()->nullable ();
96
95
$ table ->timestamp ('timestamp_useCurrent ' )->useCurrent ();
97
96
$ table ->timestamp ('timestamp_useCurrentOnUpdate ' )->useCurrentOnUpdate ()->default ('2024-10-08 00:00:00 ' );
98
-
99
97
});
100
98
}
101
99
@@ -114,5 +112,6 @@ public function down()
114
112
Schema::dropIfExists ('not_timestamps2 ' );
115
113
Schema::dropIfExists ('not_timestamps3 ' );
116
114
Schema::dropIfExists ('not_timestamps4 ' );
115
+ Schema::dropIfExists ('use_current_on_update ' );
117
116
}
118
117
};
You can’t perform that action at this time.
0 commit comments