From 6084a79b3c15055d0872b1a2e4d0a5699599327c Mon Sep 17 00:00:00 2001 From: Riccardo Berto Date: Wed, 24 Feb 2021 11:13:40 +0100 Subject: [PATCH] rename comment col into description --- init.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.sql b/init.sql index f185af9..eca381f 100644 --- a/init.sql +++ b/init.sql @@ -2,7 +2,7 @@ create table if not exists training( id uuid primary key default gen_random_uuid(), filename text not null, medium varchar(255) not null, - comment text not null, + description text not null, data jsonb not null default '{}' );