14 lines
176 B
SQL
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
|
|
); |