Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
pull/588/head
Maxence Lange 2019-06-21 23:43:44 -01:00
rodzic 40d24adbac
commit e6842a5b6c
4 zmienionych plików z 22 dodań i 4 usunięć

Wyświetl plik

@ -1,5 +1,9 @@
# Changelog
## 0.2.5
- [setup] Fixing migrations (again)
## 0.2.4

Wyświetl plik

@ -12,7 +12,7 @@ cert_dir=$(HOME)/.nextcloud/certificates
github_account=nextcloud
branch=master
codecov_token_dir=$(HOME)/.nextcloud/codecov_token
version+=0.2.4
version+=0.2.5

Wyświetl plik

@ -18,7 +18,7 @@
**🕸 Open standards:** We use the established ActivityPub standard!
]]></description>
<version>0.2.4</version>
<version>0.2.5</version>
<licence>agpl</licence>
<author mail="maxence@artificial-owl.com">Maxence Lange</author>
<author mail="jus@bitgrid.net">Julius Härtl</author>

Wyświetl plik

@ -46,7 +46,7 @@ use OCP\Migration\SimpleMigrationStep;
*
* @package OCA\Social\Migration
*/
class Version0002Date20190618000001 extends SimpleMigrationStep {
class Version0002Date20190622000001 extends SimpleMigrationStep {
/** @var IDBConnection */
@ -87,6 +87,13 @@ class Version0002Date20190618000001 extends SimpleMigrationStep {
);
}
$qb = $this->connection->getQueryBuilder();
$qb->delete('social_a2_stream');
$expr = $qb->expr();
$qb->where($expr->eq('type', $qb->createNamedParameter('Announce')));
$qb->execute();
return $schema;
}
@ -359,6 +366,10 @@ class Version0002Date20190618000001 extends SimpleMigrationStep {
return;
}
if ($oldValue === '') {
$oldValue = null;
}
$update = $this->connection->getQueryBuilder();
$update->update($dest);
$update->set($field, $update->createNamedParameter($oldValue));
@ -366,7 +377,10 @@ class Version0002Date20190618000001 extends SimpleMigrationStep {
$update->where($expr->eq($prim, $update->createNamedParameter($oldId)));
$update->execute();
try {
$update->execute();
} catch (Exception $e) {
}
break;
case 'boolean':