Skip to content

Commit

Permalink
0.18.1
Browse files Browse the repository at this point in the history
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
  • Loading branch information
ArtificialOwl committed Jan 29, 2020
1 parent 3faf03e commit 4ef8fc3
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 7 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
All notable changes to this project will be documented in this file.


### 0.18.1

- fixing issue during migration.


### 0.18.0 (nc18)

- compat nc18
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ package_name=$(app_name)
cert_dir=$(HOME)/.nextcloud/certificates
github_account=nextcloud
branch=master
version+=0.18.0
version+=0.18.1

all: appstore

Expand Down
2 changes: 1 addition & 1 deletion appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Users won't be able to find this Circle using Nextcloud search engine.
]]>
</description>
<version>0.18.0</version>
<version>0.18.1</version>
<licence>agpl</licence>
<author>Maxence Lange</author>
<documentation>
Expand Down
8 changes: 4 additions & 4 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion lib/Migration/Version0017Date20191206144441.php
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,9 @@ public function changeSchema(IOutput $output, Closure $schemaClosure, array $opt
'length' => 127,
]
);
$table->dropPrimaryKey();
if ($table->hasPrimaryKey()) {
$table->dropPrimaryKey();
}
$table->setPrimaryKey(['circle_id', 'user_id', 'contact_id']);
}

Expand Down

0 comments on commit 4ef8fc3

Please sign in to comment.