1{ 2 "formatVersion": 1, 3 "database": { 4 "version": 2, 5 "identityHash": "f8e2c644bd29a0248efe68685a91b7a5", 6 "entities": [ 7 { 8 "tableName": "AutoMigrationEntity", 9 "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`pk` INTEGER NOT NULL, `data` INTEGER NOT NULL DEFAULT 0, PRIMARY KEY(`pk`))", 10 "fields": [ 11 { 12 "fieldPath": "pk", 13 "columnName": "pk", 14 "affinity": "INTEGER", 15 "notNull": true 16 }, 17 { 18 "fieldPath": "data", 19 "columnName": "data", 20 "affinity": "INTEGER", 21 "notNull": true, 22 "defaultValue": "0" 23 } 24 ], 25 "primaryKey": { 26 "autoGenerate": false, 27 "columnNames": [ 28 "pk" 29 ] 30 }, 31 "indices": [], 32 "foreignKeys": [] 33 } 34 ], 35 "views": [], 36 "setupQueries": [ 37 "CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)", 38 "INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, 'f8e2c644bd29a0248efe68685a91b7a5')" 39 ] 40 } 41}