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}` (`address` TEXT NOT NULL, `registered_notifications` INTEGER NOT NULL, PRIMARY KEY(`address`), FOREIGN KEY(`address`) REFERENCES `safes`(`address`) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED)",
36
+
"fields": [
37
+
{
38
+
"fieldPath": "address",
39
+
"columnName": "address",
40
+
"affinity": "TEXT",
41
+
"notNull": true
42
+
},
43
+
{
44
+
"fieldPath": "registeredNotifications",
45
+
"columnName": "registered_notifications",
46
+
"affinity": "INTEGER",
47
+
"notNull": true
48
+
}
49
+
],
50
+
"primaryKey": {
51
+
"columnNames": [
52
+
"address"
53
+
],
54
+
"autoGenerate": false
55
+
},
56
+
"indices": [],
57
+
"foreignKeys": [
58
+
{
59
+
"table": "safes",
60
+
"onDelete": "CASCADE",
61
+
"onUpdate": "CASCADE",
62
+
"columns": [
63
+
"address"
64
+
],
65
+
"referencedColumns": [
66
+
"address"
67
+
]
68
+
}
69
+
]
70
+
},
71
+
{
72
+
"tableName": "erc20_tokens",
73
+
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`address` TEXT NOT NULL, `name` TEXT NOT NULL, `symbol` TEXT NOT NULL, `decimals` INTEGER NOT NULL, `logoUrl` TEXT NOT NULL, PRIMARY KEY(`address`))",
74
+
"fields": [
75
+
{
76
+
"fieldPath": "address",
77
+
"columnName": "address",
78
+
"affinity": "TEXT",
79
+
"notNull": true
80
+
},
81
+
{
82
+
"fieldPath": "name",
83
+
"columnName": "name",
84
+
"affinity": "TEXT",
85
+
"notNull": true
86
+
},
87
+
{
88
+
"fieldPath": "symbol",
89
+
"columnName": "symbol",
90
+
"affinity": "TEXT",
91
+
"notNull": true
92
+
},
93
+
{
94
+
"fieldPath": "decimals",
95
+
"columnName": "decimals",
96
+
"affinity": "INTEGER",
97
+
"notNull": true
98
+
},
99
+
{
100
+
"fieldPath": "logoUrl",
101
+
"columnName": "logoUrl",
102
+
"affinity": "TEXT",
103
+
"notNull": true
104
+
}
105
+
],
106
+
"primaryKey": {
107
+
"columnNames": [
108
+
"address"
109
+
],
110
+
"autoGenerate": false
111
+
},
112
+
"indices": [],
113
+
"foreignKeys": []
32
114
}
33
115
],
34
116
"views": [],
35
117
"setupQueries": [
36
118
"CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)",
37
-
"INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, '9b91c7dbbbc37a67ed988ca4cfdba9e0')"
119
+
"INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, 'b615b807dc0704ad3f4969bbbc39228b')"
0 commit comments