Files
picobook/src/database/migrations/4-fourth-migration.sql
T
2024-03-31 17:33:27 -07:00

14 lines
176 B
SQL

DROP TABLE repos;
DROP TABLE releases;
CREATE TABLE releases (
id text,
repo text,
author text,
slug text,
version text,
carts json,
manifest json,
created_at time
);