tor-browser

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

1.json (2389B)


      1 {
      2  "formatVersion": 1,
      3  "database": {
      4    "version": 1,
      5    "identityHash": "212dfa0b59d6a78d81e65cead34d40e0",
      6    "entities": [
      7      {
      8        "tableName": "crashes",
      9        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`uuid` TEXT NOT NULL, `stacktrace` TEXT NOT NULL, `created_at` INTEGER NOT NULL, PRIMARY KEY(`uuid`))",
     10        "fields": [
     11          {
     12            "fieldPath": "uuid",
     13            "columnName": "uuid",
     14            "affinity": "TEXT",
     15            "notNull": true
     16          },
     17          {
     18            "fieldPath": "stacktrace",
     19            "columnName": "stacktrace",
     20            "affinity": "TEXT",
     21            "notNull": true
     22          },
     23          {
     24            "fieldPath": "createdAt",
     25            "columnName": "created_at",
     26            "affinity": "INTEGER",
     27            "notNull": true
     28          }
     29        ],
     30        "primaryKey": {
     31          "columnNames": [
     32            "uuid"
     33          ],
     34          "autoGenerate": false
     35        },
     36        "indices": [],
     37        "foreignKeys": []
     38      },
     39      {
     40        "tableName": "reports",
     41        "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)",
     42        "fields": [
     43          {
     44            "fieldPath": "id",
     45            "columnName": "id",
     46            "affinity": "INTEGER",
     47            "notNull": false
     48          },
     49          {
     50            "fieldPath": "crashUuid",
     51            "columnName": "crash_uuid",
     52            "affinity": "TEXT",
     53            "notNull": true
     54          },
     55          {
     56            "fieldPath": "serviceId",
     57            "columnName": "service_id",
     58            "affinity": "TEXT",
     59            "notNull": true
     60          },
     61          {
     62            "fieldPath": "reportId",
     63            "columnName": "report_id",
     64            "affinity": "TEXT",
     65            "notNull": true
     66          }
     67        ],
     68        "primaryKey": {
     69          "columnNames": [
     70            "id"
     71          ],
     72          "autoGenerate": true
     73        },
     74        "indices": [],
     75        "foreignKeys": []
     76      }
     77    ],
     78    "views": [],
     79    "setupQueries": [
     80      "CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)",
     81      "INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, '212dfa0b59d6a78d81e65cead34d40e0')"
     82    ]
     83  }
     84 }