"createSql":"CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT, `saved_at` INTEGER NOT NULL, `urls` TEXT NOT NULL, `file` TEXT NOT NULL)",
"fields":[
{
"fieldPath":"id",
"columnName":"id",
"affinity":"INTEGER",
"notNull":false
},
{
"fieldPath":"savedAt",
"columnName":"saved_at",
"affinity":"INTEGER",
"notNull":true
},
{
"fieldPath":"urls",
"columnName":"urls",
"affinity":"TEXT",
"notNull":true
},
{
"fieldPath":"file",
"columnName":"file",
"affinity":"TEXT",
"notNull":true
}
],
"primaryKey":{
"columnNames":[
"id"
],
"autoGenerate":true
},
"indices":[],
"foreignKeys":[]
}
],
"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, \"73c5850df651b3973eaac9cadd78b7ad\")"