Support null value on map description.

This commit is contained in:
Paulo Gustavo Veiga 2023-01-20 19:12:24 -08:00
parent 439b237caa
commit ef6d50b26d

View File

@ -24,7 +24,7 @@ CREATE TABLE USER (
CREATE TABLE MINDMAP (
id INTEGER NOT NULL IDENTITY,
title VARCHAR(255) NOT NULL,
description VARCHAR(255) NOT NULL,
description VARCHAR(255),
xml LONGVARBINARY NOT NULL,
public BOOLEAN NOT NULL,
creation_date DATETIME,