From b2364b6252a17290dc70a9794631c0e0557e85a4 Mon Sep 17 00:00:00 2001 From: Riccardo Berto Date: Wed, 24 Feb 2021 11:18:27 +0100 Subject: [PATCH] owner column --- init.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/init.sql b/init.sql index eca381f..9d12d47 100644 --- a/init.sql +++ b/init.sql @@ -1,5 +1,6 @@ create table if not exists training( id uuid primary key default gen_random_uuid(), + owner varchar(255) not null, filename text not null, medium varchar(255) not null, description text not null,