mirror of
https://github.com/nextcloud/android.git
synced 2024-11-24 06:05:42 +03:00
adding is_password_protected column for shares for initial DB setup
This commit is contained in:
parent
62a53dc3e5
commit
3cbec23774
1 changed files with 2 additions and 1 deletions
|
@ -765,7 +765,8 @@ public class FileContentProvider extends ContentProvider {
|
||||||
+ ProviderTableMeta.OCSHARES_IS_DIRECTORY + INTEGER // boolean
|
+ ProviderTableMeta.OCSHARES_IS_DIRECTORY + INTEGER // boolean
|
||||||
+ ProviderTableMeta.OCSHARES_USER_ID + INTEGER
|
+ ProviderTableMeta.OCSHARES_USER_ID + INTEGER
|
||||||
+ ProviderTableMeta.OCSHARES_ID_REMOTE_SHARED + INTEGER
|
+ ProviderTableMeta.OCSHARES_ID_REMOTE_SHARED + INTEGER
|
||||||
+ ProviderTableMeta.OCSHARES_ACCOUNT_OWNER + " TEXT );");
|
+ ProviderTableMeta.OCSHARES_ACCOUNT_OWNER + TEXT
|
||||||
|
+ ProviderTableMeta.OCSHARES_IS_PASSWORD_PROTECTED + " INTEGER );");
|
||||||
}
|
}
|
||||||
|
|
||||||
private void createCapabilitiesTable(SQLiteDatabase db) {
|
private void createCapabilitiesTable(SQLiteDatabase db) {
|
||||||
|
|
Loading…
Reference in a new issue