simplify subscribing/unsubscribing podcasts
[mygpo.git] / install / update-35.sql
blobaa4ff2026e1a3c403f96b7025b898eea8618eed5
1 alter table episode add column mimetype varchar(30);
2 create index mimetype on episode(mimetype);
4 alter table podcast add column content_types varchar(30);
5 create index content_types on podcast(content_types);
7 alter table episode change timestamp timestamp datetime null;