{
  "formatVersion": 1,
  "database": {
    "version": 4,
    "identityHash": "3054942e7b0bc760eb183b9c5a6bd8f6",
    "entities": [
      {
        "tableName": "LocalReminderData",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `platformId` TEXT NOT NULL, `time` INTEGER NOT NULL, `message` TEXT NOT NULL)",
        "fields": [
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "platformId",
            "columnName": "platformId",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "time",
            "columnName": "time",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "message",
            "columnName": "message",
            "affinity": "TEXT",
            "notNull": true
          }
        ],
        "primaryKey": {
          "autoGenerate": true,
          "columnNames": [
            "id"
          ]
        }
      },
      {
        "tableName": "CachedRecordingMetadata",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` TEXT NOT NULL, `sampleRate` INTEGER NOT NULL, `mimeType` TEXT NOT NULL, PRIMARY KEY(`id`))",
        "fields": [
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "sampleRate",
            "columnName": "sampleRate",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "mimeType",
            "columnName": "mimeType",
            "affinity": "TEXT",
            "notNull": true
          }
        ],
        "primaryKey": {
          "autoGenerate": false,
          "columnNames": [
            "id"
          ]
        }
      },
      {
        "tableName": "RingDebugTransfer",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `satelliteName` TEXT, `satelliteId` TEXT NOT NULL, `satelliteFirmwareVersion` TEXT NOT NULL, `satelliteLastAdvertisementTimestamp` INTEGER NOT NULL, `collectionIndex` INTEGER NOT NULL, `sampleCount` INTEGER NOT NULL, `sampleRate` INTEGER NOT NULL, `buttonReleaseTimestamp` INTEGER NOT NULL, `transferCompleteTimestamp` INTEGER NOT NULL, `storedPath` TEXT NOT NULL)",
        "fields": [
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "satelliteName",
            "columnName": "satelliteName",
            "affinity": "TEXT"
          },
          {
            "fieldPath": "satelliteId",
            "columnName": "satelliteId",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "satelliteFirmwareVersion",
            "columnName": "satelliteFirmwareVersion",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "satelliteLastAdvertisementTimestamp",
            "columnName": "satelliteLastAdvertisementTimestamp",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "collectionIndex",
            "columnName": "collectionIndex",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "sampleCount",
            "columnName": "sampleCount",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "sampleRate",
            "columnName": "sampleRate",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "buttonReleaseTimestamp",
            "columnName": "buttonReleaseTimestamp",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "transferCompleteTimestamp",
            "columnName": "transferCompleteTimestamp",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "storedPath",
            "columnName": "storedPath",
            "affinity": "TEXT",
            "notNull": true
          }
        ],
        "primaryKey": {
          "autoGenerate": true,
          "columnNames": [
            "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, '3054942e7b0bc760eb183b9c5a6bd8f6')"
    ]
  }
}