Add Catch-all Update-Retrieval to Advanced API
[mygpo.git] / install / update-35.sql
blob62a09e8233d6e32b319a754cc75b27b8807621d2
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 not null;