-- Rename columns in websub_subscriptions table
ALTERTABLEwebsub_subscriptionsRENAMECOLUMNfeed_urlTOfeed;ALTERTABLEwebsub_subscriptionsRENAMECOLUMNhub_urlTOhub;ALTERTABLEwebsub_subscriptionsRENAMECOLUMNtopic_urlTOtopic;
```sql
-- Rename columns in websub_subscriptions table
ALTER TABLE websub_subscriptions RENAME COLUMN feed_url TO feed;
ALTER TABLE websub_subscriptions RENAME COLUMN hub_url TO hub;
ALTER TABLE websub_subscriptions RENAME COLUMN topic_url TO topic;
```