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

14 lines
176 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,
repo text,
2024-03-31 17:33:27 -07:00
author text,
2024-03-31 16:41:29 -07:00
slug text,
version text,
carts json,
2024-03-31 17:33:27 -07:00
manifest json,
created_at time
2024-03-31 16:41:29 -07:00
);