Files
coco 723ce1af5c a
2026-07-03 15:12:48 +08:00

96 lines
2.8 KiB
JSON

{
"formatVersion": 1,
"database": {
"version": 6,
"identityHash": "38c7f9320525bc00b418ef9aa7531f9d",
"entities": [
{
"tableName": "app_health_state",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`type` TEXT NOT NULL, `localtime` TEXT NOT NULL, `alerts` TEXT NOT NULL, `healthDataJsonString` TEXT NOT NULL, `restartedAtEpochSeconds` INTEGER, `badHealthStartEpochSeconds` INTEGER, PRIMARY KEY(`type`))",
"fields": [
{
"fieldPath": "type",
"columnName": "type",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "localtime",
"columnName": "localtime",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "alerts",
"columnName": "alerts",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "healthDataJsonString",
"columnName": "healthDataJsonString",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "restartedAtEpochSeconds",
"columnName": "restartedAtEpochSeconds",
"affinity": "INTEGER",
"notNull": false
},
{
"fieldPath": "badHealthStartEpochSeconds",
"columnName": "badHealthStartEpochSeconds",
"affinity": "INTEGER",
"notNull": false
}
],
"primaryKey": {
"columnNames": [
"type"
],
"autoGenerate": false
},
"indices": [],
"foreignKeys": []
},
{
"tableName": "app_health_triggers",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`name` TEXT NOT NULL, `enabled` INTEGER NOT NULL, `threshold` INTEGER, PRIMARY KEY(`name`))",
"fields": [
{
"fieldPath": "name",
"columnName": "name",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "enabled",
"columnName": "enabled",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "threshold",
"columnName": "threshold",
"affinity": "INTEGER",
"notNull": false
}
],
"primaryKey": {
"columnNames": [
"name"
],
"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, '38c7f9320525bc00b418ef9aa7531f9d')"
]
}
}