rename comment col into description

This commit is contained in:
Riccardo Berto 2021-02-24 11:13:40 +01:00
parent a123a02ff0
commit 6084a79b3c

View File

@ -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 '{}'
);