Added 'user_id' column to 'build' table (created by)
+ Renamed columns 'created' -> 'create_date', 'started' -> 'start_date' and 'finished' -> 'finish_date' + Code style fixes.
This commit is contained in:
parent
58b23fe89d
commit
4ec6d854c2
29 changed files with 550 additions and 661 deletions
|
|
@ -83,7 +83,7 @@ class ScheduleBuildCommand extends Command
|
|||
// If it's running or just created, we don't want to reschedule already.
|
||||
continue;
|
||||
}
|
||||
if ($date < $build->getFinished()) {
|
||||
if ($date < $build->getFinishDate()) {
|
||||
// If finished date is newer then the specified since days, we don't want to reschedule
|
||||
continue;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue