lib/Db/MembersRequestBuilder.php 2 locations
|
@@ 42-48 (lines=7) @@
|
| 39 |
|
* |
| 40 |
|
* @return IQueryBuilder |
| 41 |
|
*/ |
| 42 |
|
protected function getMembersInsertSql() { |
| 43 |
|
$qb = $this->dbConnection->getQueryBuilder(); |
| 44 |
|
$qb->insert(self::TABLE_MEMBERS) |
| 45 |
|
->setValue('joined', $qb->createFunction('NOW()')); |
| 46 |
|
|
| 47 |
|
return $qb; |
| 48 |
|
} |
| 49 |
|
|
| 50 |
|
|
| 51 |
|
/** |
|
@@ 87-93 (lines=7) @@
|
| 84 |
|
* |
| 85 |
|
* @return IQueryBuilder |
| 86 |
|
*/ |
| 87 |
|
protected function getGroupsInsertSql() { |
| 88 |
|
$qb = $this->dbConnection->getQueryBuilder(); |
| 89 |
|
$qb->insert(self::TABLE_GROUPS) |
| 90 |
|
->setValue('joined', $qb->createFunction('NOW()')); |
| 91 |
|
|
| 92 |
|
return $qb; |
| 93 |
|
} |
| 94 |
|
|
| 95 |
|
|
| 96 |
|
/** |
lib/Db/FederatedLinksRequestBuilder.php 1 location
|
@@ 62-68 (lines=7) @@
|
| 59 |
|
* |
| 60 |
|
* @return IQueryBuilder |
| 61 |
|
*/ |
| 62 |
|
protected function getLinksInsertSql() { |
| 63 |
|
$qb = $this->dbConnection->getQueryBuilder(); |
| 64 |
|
$qb->insert(self::TABLE_LINKS) |
| 65 |
|
->setValue('creation', $qb->createFunction('NOW()')); |
| 66 |
|
|
| 67 |
|
return $qb; |
| 68 |
|
} |
| 69 |
|
|
| 70 |
|
|
| 71 |
|
/** |
lib/Db/CirclesRequestBuilder.php 2 locations
|
@@ 350-356 (lines=7) @@
|
| 347 |
|
* |
| 348 |
|
* @return IQueryBuilder |
| 349 |
|
*/ |
| 350 |
|
protected function getSharesInsertSql() { |
| 351 |
|
$qb = $this->dbConnection->getQueryBuilder(); |
| 352 |
|
$qb->insert(self::TABLE_SHARES) |
| 353 |
|
->setValue('creation', $qb->createFunction('NOW()')); |
| 354 |
|
|
| 355 |
|
return $qb; |
| 356 |
|
} |
| 357 |
|
|
| 358 |
|
|
| 359 |
|
/** |
|
@@ 384-390 (lines=7) @@
|
| 381 |
|
* |
| 382 |
|
* @return IQueryBuilder |
| 383 |
|
*/ |
| 384 |
|
protected function getCirclesInsertSql() { |
| 385 |
|
$qb = $this->dbConnection->getQueryBuilder(); |
| 386 |
|
$qb->insert(self::TABLE_CIRCLES) |
| 387 |
|
->setValue('creation', $qb->createFunction('NOW()')); |
| 388 |
|
|
| 389 |
|
return $qb; |
| 390 |
|
} |
| 391 |
|
|
| 392 |
|
|
| 393 |
|
/** |