1.json (1460B)
1 { 2 "formatVersion": 1, 3 "database": { 4 "version": 1, 5 "identityHash": "ce733d9c47cd10312a1c13de8efb7e8d", 6 "entities": [ 7 { 8 "tableName": "top_sites", 9 "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT, `title` TEXT NOT NULL, `url` TEXT NOT NULL, `created_at` INTEGER NOT NULL)", 10 "fields": [ 11 { 12 "fieldPath": "id", 13 "columnName": "id", 14 "affinity": "INTEGER", 15 "notNull": false 16 }, 17 { 18 "fieldPath": "title", 19 "columnName": "title", 20 "affinity": "TEXT", 21 "notNull": true 22 }, 23 { 24 "fieldPath": "url", 25 "columnName": "url", 26 "affinity": "TEXT", 27 "notNull": true 28 }, 29 { 30 "fieldPath": "createdAt", 31 "columnName": "created_at", 32 "affinity": "INTEGER", 33 "notNull": true 34 } 35 ], 36 "primaryKey": { 37 "columnNames": [ 38 "id" 39 ], 40 "autoGenerate": true 41 }, 42 "indices": [], 43 "foreignKeys": [] 44 } 45 ], 46 "views": [], 47 "setupQueries": [ 48 "CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)", 49 "INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, 'ce733d9c47cd10312a1c13de8efb7e8d')" 50 ] 51 } 52 }