This repository has been archived on 2021-12-24. You can view files and clone it, but cannot push or open issues/pull-requests.
hilde/migrations/2021-06-28-154739_distribut.../up.sql

12 lines
243 B
SQL

-- 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
);