1{
2  "formatVersion": 1,
3  "database": {
4    "version": 3,
5    "identityHash": "a6f449a18d75d8cad5ca340d6f7f30e2",
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, `moreData` TEXT NOT NULL DEFAULT '', 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            "fieldPath": "moreData",
26            "columnName": "moreData",
27            "affinity": "TEXT",
28            "notNull": true,
29            "defaultValue": "''"
30          }
31        ],
32        "primaryKey": {
33          "autoGenerate": false,
34          "columnNames": [
35            "pk"
36          ]
37        }
38      }
39    ],
40    "setupQueries": [
41      "CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)",
42      "INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, 'a6f449a18d75d8cad5ca340d6f7f30e2')"
43    ]
44  }
45}