{
  "formatVersion": 1,
  "database": {
    "version": 5,
    "identityHash": "5d17e8e45c5b243fa034e4d81356849f",
    "entities": [
      {
        "tableName": "KnownWatchItem",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`transportIdentifier` TEXT NOT NULL, `transportType` TEXT NOT NULL, `name` TEXT NOT NULL, `runningFwVersion` TEXT NOT NULL, `serial` TEXT NOT NULL, `connectGoal` INTEGER NOT NULL, PRIMARY KEY(`transportIdentifier`))",
        "fields": [
          {
            "fieldPath": "transportIdentifier",
            "columnName": "transportIdentifier",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "transportType",
            "columnName": "transportType",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "name",
            "columnName": "name",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "runningFwVersion",
            "columnName": "runningFwVersion",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "serial",
            "columnName": "serial",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "connectGoal",
            "columnName": "connectGoal",
            "affinity": "INTEGER",
            "notNull": true
          }
        ],
        "primaryKey": {
          "autoGenerate": false,
          "columnNames": [
            "transportIdentifier"
          ]
        }
      },
      {
        "tableName": "LockerEntry",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` TEXT NOT NULL, `version` TEXT NOT NULL, `title` TEXT NOT NULL, `type` TEXT NOT NULL, `developerName` TEXT NOT NULL, `configurable` INTEGER NOT NULL, `pbwVersionCode` TEXT NOT NULL, `sideloaded` INTEGER NOT NULL, `platforms` TEXT NOT NULL, `recordHashcode` INTEGER NOT NULL, `hearts` INTEGER, `developerId` TEXT, `timelineEnabled` INTEGER, `removeLink` TEXT, `shareLink` TEXT, `pbwLink` TEXT, `userToken` TEXT, PRIMARY KEY(`id`))",
        "fields": [
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "version",
            "columnName": "version",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "title",
            "columnName": "title",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "type",
            "columnName": "type",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "developerName",
            "columnName": "developerName",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "configurable",
            "columnName": "configurable",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "pbwVersionCode",
            "columnName": "pbwVersionCode",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "sideloaded",
            "columnName": "sideloaded",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "platforms",
            "columnName": "platforms",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "recordHashcode",
            "columnName": "recordHashcode",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "appstoreData.hearts",
            "columnName": "hearts",
            "affinity": "INTEGER"
          },
          {
            "fieldPath": "appstoreData.developerId",
            "columnName": "developerId",
            "affinity": "TEXT"
          },
          {
            "fieldPath": "appstoreData.timelineEnabled",
            "columnName": "timelineEnabled",
            "affinity": "INTEGER"
          },
          {
            "fieldPath": "appstoreData.removeLink",
            "columnName": "removeLink",
            "affinity": "TEXT"
          },
          {
            "fieldPath": "appstoreData.shareLink",
            "columnName": "shareLink",
            "affinity": "TEXT"
          },
          {
            "fieldPath": "appstoreData.pbwLink",
            "columnName": "pbwLink",
            "affinity": "TEXT"
          },
          {
            "fieldPath": "appstoreData.userToken",
            "columnName": "userToken",
            "affinity": "TEXT"
          }
        ],
        "primaryKey": {
          "autoGenerate": false,
          "columnNames": [
            "id"
          ]
        }
      },
      {
        "tableName": "LockerEntrySyncRecord",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`parentId` TEXT NOT NULL, `pebbleSyncHashcode` INTEGER NOT NULL, `transport` TEXT NOT NULL, PRIMARY KEY(`parentId`, `transport`), FOREIGN KEY(`parentId`) REFERENCES `LockerEntry`(`id`) ON UPDATE CASCADE ON DELETE CASCADE )",
        "fields": [
          {
            "fieldPath": "parentId",
            "columnName": "parentId",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "pebbleSyncHashcode",
            "columnName": "pebbleSyncHashcode",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "transport",
            "columnName": "transport",
            "affinity": "TEXT",
            "notNull": true
          }
        ],
        "primaryKey": {
          "autoGenerate": false,
          "columnNames": [
            "parentId",
            "transport"
          ]
        },
        "foreignKeys": [
          {
            "table": "LockerEntry",
            "onDelete": "CASCADE",
            "onUpdate": "CASCADE",
            "columns": [
              "parentId"
            ],
            "referencedColumns": [
              "id"
            ]
          }
        ]
      }
    ],
    "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, '5d17e8e45c5b243fa034e4d81356849f')"
    ]
  }
}