13 lines
165 B
SQL
13 lines
165 B
SQL
|
|
DROP TABLE repos;
|
||
|
|
|
||
|
|
DROP TABLE releases;
|
||
|
|
|
||
|
|
CREATE TABLE releases (
|
||
|
|
id text,
|
||
|
|
picobook_version int,
|
||
|
|
repo text,
|
||
|
|
slug text,
|
||
|
|
version text,
|
||
|
|
carts json,
|
||
|
|
title text,
|
||
|
|
);
|