Quote:
Originally Posted by Faw
I see no book information anywhere in the databases though. 
|
They seem to be in table collection_item_v1_0.
Edit: entries for Amazon content seem to be simply book file names (ASIN and type, mostly); other items look like Microsoft object IDs, though.
Code:
create table collection_item_v1_0 (
collection_id integer not null,
item_uid varchar(32) not null,
create_ts datetime not null,
primary key(collection_id, item_uid),
foreign key(collection_id) references collection(collection_id)
)