Files
AndroidJava/Inure/app/schemas/app.simple.inure.database.instances.StackTraceDatabase/3.json
T
coco 7846a45f2c a
2026-07-03 15:47:27 +08:00

52 lines
1.4 KiB
JSON

{
"formatVersion": 1,
"database": {
"version": 3,
"identityHash": "041462db69220f9a20bcc1494d6be5b4",
"entities": [
{
"tableName": "stacktrace",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`trace` TEXT, `message` TEXT, `cause` TEXT, `timestamp` INTEGER, PRIMARY KEY(`timestamp`))",
"fields": [
{
"fieldPath": "trace",
"columnName": "trace",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "message",
"columnName": "message",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "cause",
"columnName": "cause",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "timestamp",
"columnName": "timestamp",
"affinity": "INTEGER",
"notNull": false
}
],
"primaryKey": {
"columnNames": [
"timestamp"
],
"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, '041462db69220f9a20bcc1494d6be5b4')"
]
}
}