0039_drop_dead_webapi_features.up.sql 563 B

123456789101112131415
  1. -- Drop tables for removed Web API features: usage analytics (0019),
  2. -- buddy feeds (0020), and vanity URLs (0021). The Go code backing these
  3. -- features has been deleted; the tables were never wired into the server.
  4. -- Child tables (foreign keys) first.
  5. DROP TABLE IF EXISTS buddy_feed_subscriptions;
  6. DROP TABLE IF EXISTS buddy_feed_items;
  7. DROP TABLE IF EXISTS buddy_feeds;
  8. DROP TABLE IF EXISTS vanity_url_redirects;
  9. DROP TABLE IF EXISTS vanity_urls;
  10. DROP TABLE IF EXISTS api_usage_logs;
  11. DROP TABLE IF EXISTS api_usage_stats;
  12. DROP TABLE IF EXISTS api_quotas;