Skip to content

Commit

Permalink
change orm name field lenght to 128
Browse files Browse the repository at this point in the history
  • Loading branch information
marcogiovinazzi committed Aug 23, 2017
1 parent f025924 commit dbbe019
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Comodojo/Extender/Orm/Entities/Schedule.php
Expand Up @@ -34,7 +34,7 @@ class Schedule {
/**
* @var string
*
* @ORM\Column(name="name", type="string", length=256, nullable=false, unique=true)
* @ORM\Column(name="name", type="string", length=128, nullable=false, unique=true)
*/
protected $name;

Expand Down
2 changes: 1 addition & 1 deletion src/Comodojo/Extender/Traits/BaseEntityTrait.php
Expand Up @@ -32,7 +32,7 @@ trait BaseEntityTrait {
/**
* @var string
*
* @ORM\Column(name="name", type="string", length=256, nullable=false)
* @ORM\Column(name="name", type="string", length=128, nullable=false)
*/
protected $name;

Expand Down
2 changes: 1 addition & 1 deletion src/Comodojo/Extender/Workers/ScheduleWorker.php
Expand Up @@ -47,7 +47,7 @@ public function spinup() {
public function loop() {

if ( $this->wakeup_time > time() ) {
$this->logger->info('Still in sleep time, next planned wakeup is '.date('r', $this->wakeup_time));
$this->logger->debug('Still in sleep time, next planned wakeup is '.date('r', $this->wakeup_time));
return;
}

Expand Down

0 comments on commit dbbe019

Please sign in to comment.