-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy path1.json
More file actions
70 lines (70 loc) · 1.98 KB
/
Copy path1.json
File metadata and controls
70 lines (70 loc) · 1.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"formatVersion": 1,
"database": {
"version": 1,
"identityHash": "253582c4c823992317abd8ef79b798b1",
"entities": [
{
"tableName": "movies",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`title` TEXT NOT NULL, `episode_id` TEXT, `opening_crawl` TEXT, `director` TEXT NOT NULL, `producer` TEXT NOT NULL, `url` TEXT NOT NULL, `inMyList` INTEGER NOT NULL, PRIMARY KEY(`title`))",
"fields": [
{
"fieldPath": "title",
"columnName": "title",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "episodeId",
"columnName": "episode_id",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "openingCrawl",
"columnName": "opening_crawl",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "director",
"columnName": "director",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "producer",
"columnName": "producer",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "url",
"columnName": "url",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "inMyList",
"columnName": "inMyList",
"affinity": "INTEGER",
"notNull": true
}
],
"primaryKey": {
"autoGenerate": false,
"columnNames": [
"title"
]
},
"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, '253582c4c823992317abd8ef79b798b1')"
]
}
}