tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

5.json (4143B)


      1 {
      2  "formatVersion": 1,
      3  "database": {
      4    "version": 5,
      5    "identityHash": "114208fd3dc7b54e5f31a33bf2ba8afb",
      6    "entities": [
      7      {
      8        "tableName": "crashes",
      9        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`crashType` TEXT NOT NULL DEFAULT 'UNCAUGHT', `uuid` TEXT NOT NULL, `runtime_tags` TEXT NOT NULL DEFAULT '{}', `breadcrumbs` TEXT DEFAULT null, `created_at` INTEGER NOT NULL, `stacktrace` TEXT NOT NULL, `throwable` BLOB, `minidumpPath` TEXT DEFAULT null, `processVisibility` TEXT DEFAULT null, `processType` TEXT DEFAULT null, `extrasPath` TEXT DEFAULT null, `remoteType` TEXT DEFAULT null, PRIMARY KEY(`uuid`))",
     10        "fields": [
     11          {
     12            "fieldPath": "crashType",
     13            "columnName": "crashType",
     14            "affinity": "TEXT",
     15            "notNull": true,
     16            "defaultValue": "'UNCAUGHT'"
     17          },
     18          {
     19            "fieldPath": "uuid",
     20            "columnName": "uuid",
     21            "affinity": "TEXT",
     22            "notNull": true
     23          },
     24          {
     25            "fieldPath": "runtimeTags",
     26            "columnName": "runtime_tags",
     27            "affinity": "TEXT",
     28            "notNull": true,
     29            "defaultValue": "'{}'"
     30          },
     31          {
     32            "fieldPath": "breadcrumbs",
     33            "columnName": "breadcrumbs",
     34            "affinity": "TEXT",
     35            "defaultValue": "null"
     36          },
     37          {
     38            "fieldPath": "createdAt",
     39            "columnName": "created_at",
     40            "affinity": "INTEGER",
     41            "notNull": true
     42          },
     43          {
     44            "fieldPath": "stacktrace",
     45            "columnName": "stacktrace",
     46            "affinity": "TEXT",
     47            "notNull": true
     48          },
     49          {
     50            "fieldPath": "throwableData",
     51            "columnName": "throwable",
     52            "affinity": "BLOB"
     53          },
     54          {
     55            "fieldPath": "minidumpPath",
     56            "columnName": "minidumpPath",
     57            "affinity": "TEXT",
     58            "defaultValue": "null"
     59          },
     60          {
     61            "fieldPath": "processVisibility",
     62            "columnName": "processVisibility",
     63            "affinity": "TEXT",
     64            "defaultValue": "null"
     65          },
     66          {
     67            "fieldPath": "processType",
     68            "columnName": "processType",
     69            "affinity": "TEXT",
     70            "defaultValue": "null"
     71          },
     72          {
     73            "fieldPath": "extrasPath",
     74            "columnName": "extrasPath",
     75            "affinity": "TEXT",
     76            "defaultValue": "null"
     77          },
     78          {
     79            "fieldPath": "remoteType",
     80            "columnName": "remoteType",
     81            "affinity": "TEXT",
     82            "defaultValue": "null"
     83          }
     84        ],
     85        "primaryKey": {
     86          "autoGenerate": false,
     87          "columnNames": [
     88            "uuid"
     89          ]
     90        }
     91      },
     92      {
     93        "tableName": "reports",
     94        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT, `crash_uuid` TEXT NOT NULL, `service_id` TEXT NOT NULL, `report_id` TEXT NOT NULL)",
     95        "fields": [
     96          {
     97            "fieldPath": "id",
     98            "columnName": "id",
     99            "affinity": "INTEGER"
    100          },
    101          {
    102            "fieldPath": "crashUuid",
    103            "columnName": "crash_uuid",
    104            "affinity": "TEXT",
    105            "notNull": true
    106          },
    107          {
    108            "fieldPath": "serviceId",
    109            "columnName": "service_id",
    110            "affinity": "TEXT",
    111            "notNull": true
    112          },
    113          {
    114            "fieldPath": "reportId",
    115            "columnName": "report_id",
    116            "affinity": "TEXT",
    117            "notNull": true
    118          }
    119        ],
    120        "primaryKey": {
    121          "autoGenerate": true,
    122          "columnNames": [
    123            "id"
    124          ]
    125        }
    126      }
    127    ],
    128    "setupQueries": [
    129      "CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)",
    130      "INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, '114208fd3dc7b54e5f31a33bf2ba8afb')"
    131    ]
    132  }
    133 }