Files
picobook/src/database/migrations/4-fourth-migration.sql
T

13 lines
165 B
SQL
Raw Normal View History

2024-03-31 16:41:29 -07:00
DROP TABLE repos;
DROP TABLE releases;
CREATE TABLE releases (
id text,
picobook_version int,
repo text,
slug text,
version text,
carts json,
title text,
);