simplify subscribing/unsubscribing podcasts
[mygpo.git] / install / update-30.sql
blob4a4c052b086e3720438f992a0e8a1d41c0ef3783
1 alter table podcast_tags modify source varchar(100);
2 alter table podcast_tags add unique index unique_tag (tag, podcast_id, source, user_id);
4 alter table podcast_tags add index tag (tag);
5 alter table podcast_tags add index source (source);
7 alter table podcast_tags convert to character set utf8 collate utf8_general_ci;