I'm not that good with Diesel yet am I
Some checks failed
continuous-integration/drone the build failed

This commit is contained in:
Jef Roosens 2021-06-28 18:37:26 +02:00
parent 4faf19aae5
commit e1282dacb0
Signed by: Jef Roosens
GPG key ID: 955C0660072F691F
10 changed files with 87 additions and 3 deletions

View file

@ -0,0 +1,2 @@
-- This file should undo anything in `up.sql`
DROP TABLE distributions;

View file

@ -0,0 +1,12 @@
-- Your SQL goes here
CREATE TABLE distributions (
id uuid DEFAULT gen_random_uuid() PRIMARY KEY,
name text UNIQUE NOT NULL,
description text,
origin text,
label text,
version text,
suite text,
codename text
);