i forgor "if not exists"

This commit is contained in:
lemonsh 2022-04-17 17:35:11 +02:00
parent c6727d1030
commit a4efcd34f1
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ create table if not exists users(
hash varchar(128) not null
);
create table boards(
create table if not exists boards(
id serial primary key,
name varchar(32) not null unique,
description varchar(256) not null