1
1
mirror of https://github.com/pterodactyl/panel.git synced 2024-11-22 09:02:28 +01:00

Fix failing migrations

This commit is contained in:
Dane Everitt 2017-09-24 21:20:01 -05:00
parent 9b3fca4f86
commit 3a8bea9588
No known key found for this signature in database
GPG Key ID: EEA66103B3D71F53

View File

@ -23,8 +23,8 @@ class AddTasksTable extends Migration
$table->string('day_of_month')->default('*');
$table->string('hour')->default('*');
$table->string('minute')->default('*');
$table->timestamp('last_run');
$table->timestamp('next_run');
$table->timestamp('last_run')->nullable();
$table->timestamp('next_run')->nullable();
$table->timestamps();
});
}