CREATE OR REPLACE VIEW optimized_feeds AS
SELECT
  f.title AS title,
  f.data AS data,
  f.permalink AS permalink
FROM
  feeds f;