1 alter table user add column deleted int (1) default 0 not null;
2 alter table subscription add index public (public);
4 alter table episode_log add column started int(11) default null;
5 alter table episode_log add column total int(11) default null;
8 create table episode_favorites (
9 id int(11) primary key auto_increment,
10 episode_id int (11) not null,
11 created datetime not null,
12 user_id int (11) not null