-- Add migration script here create table cached ( route text not null unique, cached int not null, content_type text not null, content text not null ); create unique index path_unique_idx on cached (lower(route));