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