Skip to content

Commit 6c4ee03

Browse files
committed
fix #83
1 parent 41bba0d commit 6c4ee03

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

lib/Db/UserToClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public function __construct() {
2222
$this->addType('clientId', 'integer');
2323
$this->addType('admin', 'integer');
2424
$this->addType('access', 'integer');
25-
$this->addType('createdAt', 'timestamp');
25+
$this->addType('createdAt', 'integer');
2626

2727
}
2828
}

lib/Db/UserToProject.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public function __construct() {
2222
$this->addType('projectId', 'integer');
2323
$this->addType('admin', 'integer');
2424
$this->addType('access', 'integer');
25-
$this->addType('createdAt', 'timestamp');
25+
$this->addType('createdAt', 'integer');
2626

2727
}
2828
}

lib/Db/WorkIntervalToTag.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public function __construct() {
1818
$this->addType('id', 'integer');
1919
$this->addType('workIntervalId', 'integer');
2020
$this->addType('tagId', 'integer');
21-
$this->addType('createdAt', 'timestamp');
21+
$this->addType('createdAt', 'integer');
2222

2323
}
2424
}

lib/Db/WorkItem.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public function __construct() {
2222
$this->addType('projectId', 'integer');
2323
$this->addType('tagId', 'integer');
2424
$this->addType('totalDuration', 'integer');
25-
$this->addType('createdAt', 'timestamp');
25+
$this->addType('createdAt', 'integer');
2626
$this->addType('userUid', 'string');
2727
}
2828
}

0 commit comments

Comments
 (0)