{ "formatVersion": 1, "database": { "version": 1, "identityHash": "fdff11f9a71acb43d435dcb37a16be4c", "entities": [ { "tableName": "http_cache", "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`cache_url` TEXT NOT NULL, `response_body` TEXT, `creation_timestamp` INTEGER, `max_age` INTEGER NOT NULL, PRIMARY KEY(`cache_url`))", "fields": [ { "fieldPath": "url", "columnName": "cache_url", "affinity": "TEXT", "notNull": true }, { "fieldPath": "responseBody", "columnName": "response_body", "affinity": "TEXT", "notNull": false }, { "fieldPath": "creationTimestamp", "columnName": "creation_timestamp", "affinity": "INTEGER", "notNull": false }, { "fieldPath": "maxAge", "columnName": "max_age", "affinity": "INTEGER", "notNull": true } ], "primaryKey": { "columnNames": [ "cache_url" ], "autoGenerate": false }, "indices": [ { "name": "index_http_cache_cache_url", "unique": false, "columnNames": [ "cache_url" ], "orders": [], "createSql": "CREATE INDEX IF NOT EXISTS `index_http_cache_cache_url` ON `${TABLE_NAME}` (`cache_url`)" } ], "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, 'fdff11f9a71acb43d435dcb37a16be4c')" ] } }