Add (ai gen)

This commit is contained in:
2023-10-02 10:17:41 +08:00
parent 6942d9f4fb
commit d0271b4657
2 changed files with 17 additions and 17 deletions

View File

@@ -14,7 +14,7 @@ public function up(): void
Schema::create('daily_task_schedules', function (Blueprint $table) {
$table->id();
$table->string('task');
$table->time('next_run_time');
$table->timestamp('next_run_time');
$table->timestamps();
});
}