"createSql":"CREATE INDEX IF NOT EXISTS `index_Feed_folder_id` ON `${TABLE_NAME}` (`folder_id`)"
},
{
"name":"index_Feed_account_id",
"unique":false,
"columnNames":[
"account_id"
],
"orders":[],
"createSql":"CREATE INDEX IF NOT EXISTS `index_Feed_account_id` ON `${TABLE_NAME}` (`account_id`)"
}
],
"foreignKeys":[
{
"table":"Folder",
"onDelete":"SET NULL",
"onUpdate":"NO ACTION",
"columns":[
"folder_id"
],
"referencedColumns":[
"id"
]
},
{
"table":"Account",
"onDelete":"CASCADE",
"onUpdate":"NO ACTION",
"columns":[
"account_id"
],
"referencedColumns":[
"id"
]
}
]
},
{
"tableName":"Item",
"createSql":"CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `title` TEXT, `description` TEXT, `clean_description` TEXT, `link` TEXT, `image_link` TEXT, `author` TEXT, `pub_date` INTEGER, `content` TEXT, `feed_id` INTEGER NOT NULL, `read_time` REAL NOT NULL, `read` INTEGER NOT NULL, `starred` INTEGER NOT NULL, `remote_id` TEXT, FOREIGN KEY(`feed_id`) REFERENCES `Feed`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE )",
"fields":[
{
"fieldPath":"id",
"columnName":"id",
"affinity":"INTEGER",
"notNull":true
},
{
"fieldPath":"title",
"columnName":"title",
"affinity":"TEXT",
"notNull":false
},
{
"fieldPath":"description",
"columnName":"description",
"affinity":"TEXT",
"notNull":false
},
{
"fieldPath":"cleanDescription",
"columnName":"clean_description",
"affinity":"TEXT",
"notNull":false
},
{
"fieldPath":"link",
"columnName":"link",
"affinity":"TEXT",
"notNull":false
},
{
"fieldPath":"imageLink",
"columnName":"image_link",
"affinity":"TEXT",
"notNull":false
},
{
"fieldPath":"author",
"columnName":"author",
"affinity":"TEXT",
"notNull":false
},
{
"fieldPath":"pubDate",
"columnName":"pub_date",
"affinity":"INTEGER",
"notNull":false
},
{
"fieldPath":"content",
"columnName":"content",
"affinity":"TEXT",
"notNull":false
},
{
"fieldPath":"feedId",
"columnName":"feed_id",
"affinity":"INTEGER",
"notNull":true
},
{
"fieldPath":"readTime",
"columnName":"read_time",
"affinity":"REAL",
"notNull":true
},
{
"fieldPath":"isRead",
"columnName":"read",
"affinity":"INTEGER",
"notNull":true
},
{
"fieldPath":"isStarred",
"columnName":"starred",
"affinity":"INTEGER",
"notNull":true
},
{
"fieldPath":"remoteId",
"columnName":"remote_id",
"affinity":"TEXT",
"notNull":false
}
],
"primaryKey":{
"autoGenerate":true,
"columnNames":[
"id"
]
},
"indices":[
{
"name":"index_Item_feed_id",
"unique":false,
"columnNames":[
"feed_id"
],
"orders":[],
"createSql":"CREATE INDEX IF NOT EXISTS `index_Item_feed_id` ON `${TABLE_NAME}` (`feed_id`)"
}
],
"foreignKeys":[
{
"table":"Feed",
"onDelete":"CASCADE",
"onUpdate":"NO ACTION",
"columns":[
"feed_id"
],
"referencedColumns":[
"id"
]
}
]
},
{
"tableName":"Folder",
"createSql":"CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `name` TEXT, `remoteId` TEXT, `account_id` INTEGER NOT NULL, FOREIGN KEY(`account_id`) REFERENCES `Account`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE )",
"fields":[
{
"fieldPath":"id",
"columnName":"id",
"affinity":"INTEGER",
"notNull":true
},
{
"fieldPath":"name",
"columnName":"name",
"affinity":"TEXT",
"notNull":false
},
{
"fieldPath":"remoteId",
"columnName":"remoteId",
"affinity":"TEXT",
"notNull":false
},
{
"fieldPath":"accountId",
"columnName":"account_id",
"affinity":"INTEGER",
"notNull":true
}
],
"primaryKey":{
"autoGenerate":true,
"columnNames":[
"id"
]
},
"indices":[
{
"name":"index_Folder_account_id",
"unique":false,
"columnNames":[
"account_id"
],
"orders":[],
"createSql":"CREATE INDEX IF NOT EXISTS `index_Folder_account_id` ON `${TABLE_NAME}` (`account_id`)"
}
],
"foreignKeys":[
{
"table":"Account",
"onDelete":"CASCADE",
"onUpdate":"NO ACTION",
"columns":[
"account_id"
],
"referencedColumns":[
"id"
]
}
]
},
{
"tableName":"Account",
"createSql":"CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `url` TEXT, `name` TEXT, `displayed_name` TEXT, `type` TEXT, `last_modified` INTEGER NOT NULL, `current_account` INTEGER NOT NULL, `token` TEXT, `write_token` TEXT, `notifications_enabled` INTEGER NOT NULL)",
"fields":[
{
"fieldPath":"id",
"columnName":"id",
"affinity":"INTEGER",
"notNull":true
},
{
"fieldPath":"url",
"columnName":"url",
"affinity":"TEXT",
"notNull":false
},
{
"fieldPath":"name",
"columnName":"name",
"affinity":"TEXT",
"notNull":false
},
{
"fieldPath":"displayedName",
"columnName":"displayed_name",
"affinity":"TEXT",
"notNull":false
},
{
"fieldPath":"type",
"columnName":"type",
"affinity":"TEXT",
"notNull":false
},
{
"fieldPath":"lastModified",
"columnName":"last_modified",
"affinity":"INTEGER",
"notNull":true
},
{
"fieldPath":"isCurrentAccount",
"columnName":"current_account",
"affinity":"INTEGER",
"notNull":true
},
{
"fieldPath":"token",
"columnName":"token",
"affinity":"TEXT",
"notNull":false
},
{
"fieldPath":"writeToken",
"columnName":"write_token",
"affinity":"TEXT",
"notNull":false
},
{
"fieldPath":"isNotificationsEnabled",
"columnName":"notifications_enabled",
"affinity":"INTEGER",
"notNull":true
}
],
"primaryKey":{
"autoGenerate":true,
"columnNames":[
"id"
]
},
"indices":[],
"foreignKeys":[]
},
{
"tableName":"ItemStateChange",
"createSql":"CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER NOT NULL, `read_change` INTEGER NOT NULL, `star_change` INTEGER NOT NULL, `account_id` INTEGER NOT NULL, PRIMARY KEY(`id`), FOREIGN KEY(`account_id`) REFERENCES `Account`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE )",
"fields":[
{
"fieldPath":"id",
"columnName":"id",
"affinity":"INTEGER",
"notNull":true
},
{
"fieldPath":"readChange",
"columnName":"read_change",
"affinity":"INTEGER",
"notNull":true
},
{
"fieldPath":"starChange",
"columnName":"star_change",
"affinity":"INTEGER",
"notNull":true
},
{
"fieldPath":"accountId",
"columnName":"account_id",
"affinity":"INTEGER",
"notNull":true
}
],
"primaryKey":{
"autoGenerate":false,
"columnNames":[
"id"
]
},
"indices":[],
"foreignKeys":[
{
"table":"Account",
"onDelete":"CASCADE",
"onUpdate":"NO ACTION",
"columns":[
"account_id"
],
"referencedColumns":[
"id"
]
}
]
},
{
"tableName":"ItemState",
"createSql":"CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `read` INTEGER NOT NULL, `starred` INTEGER NOT NULL, `remote_id` TEXT NOT NULL, `account_id` INTEGER NOT NULL, FOREIGN KEY(`account_id`) REFERENCES `Account`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE )",
"fields":[
{
"fieldPath":"id",
"columnName":"id",
"affinity":"INTEGER",
"notNull":true
},
{
"fieldPath":"read",
"columnName":"read",
"affinity":"INTEGER",
"notNull":true
},
{
"fieldPath":"starred",
"columnName":"starred",
"affinity":"INTEGER",
"notNull":true
},
{
"fieldPath":"remoteId",
"columnName":"remote_id",
"affinity":"TEXT",
"notNull":true
},
{
"fieldPath":"accountId",
"columnName":"account_id",
"affinity":"INTEGER",
"notNull":true
}
],
"primaryKey":{
"autoGenerate":true,
"columnNames":[
"id"
]
},
"indices":[
{
"name":"index_ItemState_remote_id_account_id",
"unique":true,
"columnNames":[
"remote_id",
"account_id"
],
"orders":[],
"createSql":"CREATE UNIQUE INDEX IF NOT EXISTS `index_ItemState_remote_id_account_id` ON `${TABLE_NAME}` (`remote_id`, `account_id`)"
}
],
"foreignKeys":[
{
"table":"Account",
"onDelete":"CASCADE",
"onUpdate":"NO ACTION",
"columns":[
"account_id"
],
"referencedColumns":[
"id"
]
}
]
}
],
"views":[],
"setupQueries":[
"CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)",