adding is_password_protected column for shares for initial DB setup

This commit is contained in:
AndyScherzinger 2018-06-05 17:27:44 +02:00
parent 62a53dc3e5
commit 3cbec23774
No known key found for this signature in database
GPG key ID: 6CADC7E3523C308B

View file

@ -765,7 +765,8 @@ public class FileContentProvider extends ContentProvider {
+ ProviderTableMeta.OCSHARES_IS_DIRECTORY + INTEGER // boolean
+ ProviderTableMeta.OCSHARES_USER_ID + 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) {