12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- {
- "formatVersion": 1,
- "database": {
- "version": 1,
- "identityHash": "0abf97687625abb96ce41bc835457a58",
- "entities": [
- {
- "tableName": "BookmarkEntity",
- "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`uid` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `title` TEXT NOT NULL, `url` TEXT NOT NULL, `image` BLOB)",
- "fields": [
- {
- "fieldPath": "uid",
- "columnName": "uid",
- "affinity": "INTEGER",
- "notNull": true
- },
- {
- "fieldPath": "title",
- "columnName": "title",
- "affinity": "TEXT",
- "notNull": true
- },
- {
- "fieldPath": "url",
- "columnName": "url",
- "affinity": "TEXT",
- "notNull": true
- },
- {
- "fieldPath": "image",
- "columnName": "image",
- "affinity": "BLOB",
- "notNull": false
- }
- ],
- "primaryKey": {
- "autoGenerate": true,
- "columnNames": [
- "uid"
- ]
- },
- "indices": [],
- "foreignKeys": []
- }
- ],
- "views": [],
- "setupQueries": [
- "CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)",
- "INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, '0abf97687625abb96ce41bc835457a58')"
- ]
- }
- }
|