tor-browser

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

3.json (2699B)


      1 {
      2  "formatVersion": 1,
      3  "database": {
      4    "version": 3,
      5    "identityHash": "eb8c34cf7bcaf5f84bf0c3b407c8061a",
      6    "entities": [
      7      {
      8        "tableName": "manifests",
      9        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`manifest` TEXT NOT NULL, `start_url` TEXT NOT NULL, `scope` TEXT, `has_share_targets` INTEGER NOT NULL, `created_at` INTEGER NOT NULL, `updated_at` INTEGER NOT NULL, `used_at` INTEGER NOT NULL, PRIMARY KEY(`start_url`))",
     10        "fields": [
     11          {
     12            "fieldPath": "manifest",
     13            "columnName": "manifest",
     14            "affinity": "TEXT",
     15            "notNull": true
     16          },
     17          {
     18            "fieldPath": "startUrl",
     19            "columnName": "start_url",
     20            "affinity": "TEXT",
     21            "notNull": true
     22          },
     23          {
     24            "fieldPath": "scope",
     25            "columnName": "scope",
     26            "affinity": "TEXT",
     27            "notNull": false
     28          },
     29          {
     30            "fieldPath": "hasShareTargets",
     31            "columnName": "has_share_targets",
     32            "affinity": "INTEGER",
     33            "notNull": true
     34          },
     35          {
     36            "fieldPath": "createdAt",
     37            "columnName": "created_at",
     38            "affinity": "INTEGER",
     39            "notNull": true
     40          },
     41          {
     42            "fieldPath": "updatedAt",
     43            "columnName": "updated_at",
     44            "affinity": "INTEGER",
     45            "notNull": true
     46          },
     47          {
     48            "fieldPath": "usedAt",
     49            "columnName": "used_at",
     50            "affinity": "INTEGER",
     51            "notNull": true
     52          }
     53        ],
     54        "primaryKey": {
     55          "columnNames": [
     56            "start_url"
     57          ],
     58          "autoGenerate": false
     59        },
     60        "indices": [
     61          {
     62            "name": "index_manifests_scope",
     63            "unique": false,
     64            "columnNames": [
     65              "scope"
     66            ],
     67            "createSql": "CREATE INDEX IF NOT EXISTS `index_manifests_scope` ON `${TABLE_NAME}` (`scope`)"
     68          },
     69          {
     70            "name": "index_manifests_has_share_targets",
     71            "unique": false,
     72            "columnNames": [
     73              "has_share_targets"
     74            ],
     75            "createSql": "CREATE INDEX IF NOT EXISTS `index_manifests_has_share_targets` ON `${TABLE_NAME}` (`has_share_targets`)"
     76          }
     77        ],
     78        "foreignKeys": []
     79      }
     80    ],
     81    "views": [],
     82    "setupQueries": [
     83      "CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)",
     84      "INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, 'eb8c34cf7bcaf5f84bf0c3b407c8061a')"
     85    ]
     86  }
     87 }