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}` (`action` TEXT NOT NULL, `enabled` INTEGER NOT NULL, `executions` INTEGER NOT NULL, `id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)",
10
+
"fields": [
11
+
{
12
+
"fieldPath": "action",
13
+
"columnName": "action",
14
+
"affinity": "TEXT",
15
+
"notNull": true
16
+
},
17
+
{
18
+
"fieldPath": "enabled",
19
+
"columnName": "enabled",
20
+
"affinity": "INTEGER",
21
+
"notNull": true
22
+
},
23
+
{
24
+
"fieldPath": "executions",
25
+
"columnName": "executions",
26
+
"affinity": "INTEGER",
27
+
"notNull": true
28
+
},
29
+
{
30
+
"fieldPath": "id",
31
+
"columnName": "id",
32
+
"affinity": "INTEGER",
33
+
"notNull": true
34
+
}
35
+
],
36
+
"primaryKey": {
37
+
"autoGenerate": true,
38
+
"columnNames": [
39
+
"id"
40
+
]
41
+
}
42
+
},
43
+
{
44
+
"tableName": "executions",
45
+
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`fileName` TEXT NOT NULL, `verb` TEXT NOT NULL DEFAULT 'MOVE', `timestamp` INTEGER NOT NULL, `id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)",
46
+
"fields": [
47
+
{
48
+
"fieldPath": "fileName",
49
+
"columnName": "fileName",
50
+
"affinity": "TEXT",
51
+
"notNull": true
52
+
},
53
+
{
54
+
"fieldPath": "verb",
55
+
"columnName": "verb",
56
+
"affinity": "TEXT",
57
+
"notNull": true,
58
+
"defaultValue": "'MOVE'"
59
+
},
60
+
{
61
+
"fieldPath": "timestamp",
62
+
"columnName": "timestamp",
63
+
"affinity": "INTEGER",
64
+
"notNull": true
65
+
},
66
+
{
67
+
"fieldPath": "id",
68
+
"columnName": "id",
69
+
"affinity": "INTEGER",
70
+
"notNull": true
71
+
}
72
+
],
73
+
"primaryKey": {
74
+
"autoGenerate": true,
75
+
"columnNames": [
76
+
"id"
77
+
]
78
+
}
79
+
}
80
+
],
81
+
"setupQueries": [
82
+
"CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)",
83
+
"INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, '6517669d413b15b9fd2c38215b1fe3be')"
0 commit comments