2.json (1657B)
1 { 2 "formatVersion": 1, 3 "database": { 4 "version": 2, 5 "identityHash": "4c6cae8272b2580de8cb444de31f27d5", 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, `is_default` INTEGER 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": "isDefault", 31 "columnName": "is_default", 32 "affinity": "INTEGER", 33 "notNull": true 34 }, 35 { 36 "fieldPath": "createdAt", 37 "columnName": "created_at", 38 "affinity": "INTEGER", 39 "notNull": true 40 } 41 ], 42 "primaryKey": { 43 "columnNames": [ 44 "id" 45 ], 46 "autoGenerate": true 47 }, 48 "indices": [], 49 "foreignKeys": [] 50 } 51 ], 52 "views": [], 53 "setupQueries": [ 54 "CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)", 55 "INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, '4c6cae8272b2580de8cb444de31f27d5')" 56 ] 57 } 58 }