Files
AndroidJava/dash-wallet/wallet/schemas/de.schildbach.wallet.database.AppDatabase/1.json
T
coco 7846a45f2c a
2026-07-03 15:47:27 +08:00

40 lines
1.1 KiB
JSON

{
"formatVersion": 1,
"database": {
"version": 1,
"identityHash": "0a145b35951e4a52db8d16056f22e8aa",
"entities": [
{
"tableName": "exchange_rates",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`currencyCode` TEXT NOT NULL, `rate` TEXT, PRIMARY KEY(`currencyCode`))",
"fields": [
{
"fieldPath": "currencyCode",
"columnName": "currencyCode",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "rate",
"columnName": "rate",
"affinity": "TEXT",
"notNull": false
}
],
"primaryKey": {
"columnNames": [
"currencyCode"
],
"autoGenerate": false
},
"indices": [],
"foreignKeys": []
}
],
"views": [],
"setupQueries": [
"CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)",
"INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, '0a145b35951e4a52db8d16056f22e8aa')"
]
}
}