You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `widgetId` INTEGER NOT NULL, `widgetType` TEXT NOT NULL, `exchange` TEXT NOT NULL, `coin` TEXT NOT NULL, `currency` TEXT NOT NULL, `coinCustomId` TEXT, `coinCustomName` TEXT, `currencyCustomName` TEXT, `showExchangeLabel` INTEGER NOT NULL, `showCoinLabel` INTEGER NOT NULL, `showIcon` INTEGER NOT NULL, `numDecimals` INTEGER NOT NULL, `currencySymbol` TEXT, `theme` TEXT NOT NULL, `nightMode` TEXT NOT NULL, `coinUnit` TEXT, `currencyUnit` TEXT, `customIcon` TEXT, `portraitTextSize` INTEGER, `landscapeTextSize` INTEGER, `lastValue` TEXT, `amountHeld` REAL, `address` TEXT, `showAmountLabel` INTEGER NOT NULL, `useInverse` INTEGER NOT NULL, `lastUpdated` INTEGER NOT NULL, `state` TEXT NOT NULL)",
10
+
"fields": [
11
+
{
12
+
"fieldPath": "id",
13
+
"columnName": "id",
14
+
"affinity": "INTEGER",
15
+
"notNull": true
16
+
},
17
+
{
18
+
"fieldPath": "widgetId",
19
+
"columnName": "widgetId",
20
+
"affinity": "INTEGER",
21
+
"notNull": true
22
+
},
23
+
{
24
+
"fieldPath": "widgetType",
25
+
"columnName": "widgetType",
26
+
"affinity": "TEXT",
27
+
"notNull": true
28
+
},
29
+
{
30
+
"fieldPath": "exchange",
31
+
"columnName": "exchange",
32
+
"affinity": "TEXT",
33
+
"notNull": true
34
+
},
35
+
{
36
+
"fieldPath": "coin",
37
+
"columnName": "coin",
38
+
"affinity": "TEXT",
39
+
"notNull": true
40
+
},
41
+
{
42
+
"fieldPath": "currency",
43
+
"columnName": "currency",
44
+
"affinity": "TEXT",
45
+
"notNull": true
46
+
},
47
+
{
48
+
"fieldPath": "coinCustomId",
49
+
"columnName": "coinCustomId",
50
+
"affinity": "TEXT",
51
+
"notNull": false
52
+
},
53
+
{
54
+
"fieldPath": "coinCustomName",
55
+
"columnName": "coinCustomName",
56
+
"affinity": "TEXT",
57
+
"notNull": false
58
+
},
59
+
{
60
+
"fieldPath": "currencyCustomName",
61
+
"columnName": "currencyCustomName",
62
+
"affinity": "TEXT",
63
+
"notNull": false
64
+
},
65
+
{
66
+
"fieldPath": "showExchangeLabel",
67
+
"columnName": "showExchangeLabel",
68
+
"affinity": "INTEGER",
69
+
"notNull": true
70
+
},
71
+
{
72
+
"fieldPath": "showCoinLabel",
73
+
"columnName": "showCoinLabel",
74
+
"affinity": "INTEGER",
75
+
"notNull": true
76
+
},
77
+
{
78
+
"fieldPath": "showIcon",
79
+
"columnName": "showIcon",
80
+
"affinity": "INTEGER",
81
+
"notNull": true
82
+
},
83
+
{
84
+
"fieldPath": "numDecimals",
85
+
"columnName": "numDecimals",
86
+
"affinity": "INTEGER",
87
+
"notNull": true
88
+
},
89
+
{
90
+
"fieldPath": "currencySymbol",
91
+
"columnName": "currencySymbol",
92
+
"affinity": "TEXT",
93
+
"notNull": false
94
+
},
95
+
{
96
+
"fieldPath": "theme",
97
+
"columnName": "theme",
98
+
"affinity": "TEXT",
99
+
"notNull": true
100
+
},
101
+
{
102
+
"fieldPath": "nightMode",
103
+
"columnName": "nightMode",
104
+
"affinity": "TEXT",
105
+
"notNull": true
106
+
},
107
+
{
108
+
"fieldPath": "coinUnit",
109
+
"columnName": "coinUnit",
110
+
"affinity": "TEXT",
111
+
"notNull": false
112
+
},
113
+
{
114
+
"fieldPath": "currencyUnit",
115
+
"columnName": "currencyUnit",
116
+
"affinity": "TEXT",
117
+
"notNull": false
118
+
},
119
+
{
120
+
"fieldPath": "customIcon",
121
+
"columnName": "customIcon",
122
+
"affinity": "TEXT",
123
+
"notNull": false
124
+
},
125
+
{
126
+
"fieldPath": "portraitTextSize",
127
+
"columnName": "portraitTextSize",
128
+
"affinity": "INTEGER",
129
+
"notNull": false
130
+
},
131
+
{
132
+
"fieldPath": "landscapeTextSize",
133
+
"columnName": "landscapeTextSize",
134
+
"affinity": "INTEGER",
135
+
"notNull": false
136
+
},
137
+
{
138
+
"fieldPath": "lastValue",
139
+
"columnName": "lastValue",
140
+
"affinity": "TEXT",
141
+
"notNull": false
142
+
},
143
+
{
144
+
"fieldPath": "amountHeld",
145
+
"columnName": "amountHeld",
146
+
"affinity": "REAL",
147
+
"notNull": false
148
+
},
149
+
{
150
+
"fieldPath": "address",
151
+
"columnName": "address",
152
+
"affinity": "TEXT",
153
+
"notNull": false
154
+
},
155
+
{
156
+
"fieldPath": "showAmountLabel",
157
+
"columnName": "showAmountLabel",
158
+
"affinity": "INTEGER",
159
+
"notNull": true
160
+
},
161
+
{
162
+
"fieldPath": "useInverse",
163
+
"columnName": "useInverse",
164
+
"affinity": "INTEGER",
165
+
"notNull": true
166
+
},
167
+
{
168
+
"fieldPath": "lastUpdated",
169
+
"columnName": "lastUpdated",
170
+
"affinity": "INTEGER",
171
+
"notNull": true
172
+
},
173
+
{
174
+
"fieldPath": "state",
175
+
"columnName": "state",
176
+
"affinity": "TEXT",
177
+
"notNull": true
178
+
}
179
+
],
180
+
"primaryKey": {
181
+
"autoGenerate": true,
182
+
"columnNames": [
183
+
"id"
184
+
]
185
+
},
186
+
"indices": [
187
+
{
188
+
"name": "index_Widget_widgetId",
189
+
"unique": true,
190
+
"columnNames": [
191
+
"widgetId"
192
+
],
193
+
"orders": [],
194
+
"createSql": "CREATE UNIQUE INDEX IF NOT EXISTS `index_Widget_widgetId` ON `${TABLE_NAME}` (`widgetId`)"
195
+
}
196
+
],
197
+
"foreignKeys": []
198
+
},
199
+
{
200
+
"tableName": "Configuration",
201
+
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `refresh` INTEGER NOT NULL, `consistentSize` INTEGER NOT NULL, `dataMigrationVersion` INTEGER NOT NULL)",
202
+
"fields": [
203
+
{
204
+
"fieldPath": "id",
205
+
"columnName": "id",
206
+
"affinity": "INTEGER",
207
+
"notNull": true
208
+
},
209
+
{
210
+
"fieldPath": "refresh",
211
+
"columnName": "refresh",
212
+
"affinity": "INTEGER",
213
+
"notNull": true
214
+
},
215
+
{
216
+
"fieldPath": "consistentSize",
217
+
"columnName": "consistentSize",
218
+
"affinity": "INTEGER",
219
+
"notNull": true
220
+
},
221
+
{
222
+
"fieldPath": "dataMigrationVersion",
223
+
"columnName": "dataMigrationVersion",
224
+
"affinity": "INTEGER",
225
+
"notNull": true
226
+
}
227
+
],
228
+
"primaryKey": {
229
+
"autoGenerate": true,
230
+
"columnNames": [
231
+
"id"
232
+
]
233
+
},
234
+
"indices": [],
235
+
"foreignKeys": []
236
+
}
237
+
],
238
+
"views": [],
239
+
"setupQueries": [
240
+
"CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)",
241
+
"INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, '01c616eedee5c021678bbc985446b3ac')"
0 commit comments