mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-20 00:02:19 +00:00
6 lines
166 B
SQL
6 lines
166 B
SQL
-- Add up migration script here
|
|
CREATE TABLE pip_resolution_cache(
|
|
hash VARCHAR(255) PRIMARY KEY,
|
|
expiration TIMESTAMP NOT NULL,
|
|
lockfile TEXT NOT NULL
|
|
); |