Fix Authority db table schema

master
Severiano Jaramillo 2018-11-01 12:52:20 -06:00
parent 1c018346ae
commit 1932b27f7e
1 changed files with 2 additions and 5 deletions

View File

@ -8,9 +8,6 @@ import androidx.room.PrimaryKey
data class Authority (
@PrimaryKey(autoGenerate = true)
@ColumnInfo(name = "id") val id: Long,
@ColumnInfo(name = "encrypted_brainkey") val encryptedBrainkey: String,
@ColumnInfo(name = "encrypted_sequence_number") val encryptedSequenceNumber: String, // TODO verify data type
@ColumnInfo(name = "encrypted_wif") val encryptedWif: String,
@ColumnInfo(name = "user_id") val userId: String,
@ColumnInfo(name = "authority_type") val authorityType: Int
@ColumnInfo(name = "encrypted_private_key") val encryptedBrainkey: String,
@ColumnInfo(name = "user_id") val userId: String
)