gabrielsimmer.com/migrations/20230719160618_initial.sql

10 lines
232 B
MySQL
Raw Permalink Normal View History

-- 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));