gabrielsimmer.com/migrations/20230719160618_initial.sql
Gabriel Simmer 3b849e6e6e
Initial commit of proof-of-concept
This is /really/ rough, but is a really rough sketch of how I plan to build my
overengineered personal website with Rust and eventually Fly.io + LiteFS.
2023-07-19 21:03:58 +01:00

10 lines
232 B
SQL

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