File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
owncloudData/src/main/java/com/owncloud/android/data Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -67,7 +67,6 @@ import com.owncloud.android.domain.files.model.MIME_DIR_UNIX
6767)
6868data class OCFileEntity (
6969 var parentId : Long? = null ,
70- @ColumnInfo(index = true )
7170 val owner : String ,
7271 val remotePath : String ,
7372 val remoteId : String? ,
@@ -91,7 +90,6 @@ data class OCFileEntity(
9190 val fileIsDownloading : Boolean? = null ,
9291 val sharedWithSharee : Boolean? = false ,
9392 var sharedByLink : Boolean = false ,
94- @ColumnInfo(index = true )
9593 val spaceId : String? = null ,
9694) {
9795 @PrimaryKey(autoGenerate = true )
Original file line number Diff line number Diff line change @@ -43,9 +43,9 @@ import com.owncloud.android.data.spaces.db.SpacesEntity.Companion.SPACES_LAST_MO
4343 )]
4444)
4545data class SpaceSpecialEntity (
46- @ColumnInfo(name = SPACES_SPECIAL_ACCOUNT_NAME , index = true )
46+ @ColumnInfo(name = SPACES_SPECIAL_ACCOUNT_NAME )
4747 val accountName : String ,
48- @ColumnInfo(name = SPACES_SPECIAL_SPACE_ID , index = true )
48+ @ColumnInfo(name = SPACES_SPECIAL_SPACE_ID )
4949 val spaceId : String ,
5050 @ColumnInfo(name = SPACES_SPECIAL_ETAG )
5151 val eTag : String ,
You can’t perform that action at this time.
0 commit comments