ferret/migrations/20230725232149_cached_urls.sql

8 lines
154 B
MySQL
Raw Normal View History

2023-07-25 23:28:17 +00:00
-- Add migration script here
CREATE TABLE IF NOT EXISTS cached_urls
(
2023-07-25 23:47:39 +00:00
last_fetched INTEGER NOT NULL,
url TEXT NOT NULL,
body TEXT NOT NULL
2023-07-25 23:28:17 +00:00
);