Files
AndroidJava/Inure/app/schemas/app.simple.inure.database.instances.QuickAppsDatabase/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": "7483b40327f912690c6ae987141f4505",
"entities": [
{
"tableName": "quick_apps",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`date_added` INTEGER NOT NULL, `package_id` TEXT NOT NULL, PRIMARY KEY(`package_id`))",
"fields": [
{
"fieldPath": "date",
"columnName": "date_added",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "packageName",
"columnName": "package_id",
"affinity": "TEXT",
"notNull": true
}
],
"primaryKey": {
"columnNames": [
"package_id"
],
"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, '7483b40327f912690c6ae987141f4505')"
]
}
}