La note et la remarque d'une recette n'est plus nullable.

This commit is contained in:
FyloZ 2021-03-10 23:28:50 -05:00
parent 83edd57dd8
commit 9a4042a6d0
2 changed files with 7 additions and 3 deletions

View File

@ -1,7 +1,7 @@
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
group = "dev.fyloz.colorrecipesexplorer"
version = "1.1.0"
version = "1.1.1"
plugins {
kotlin("jvm") version "1.4.30"

View File

@ -104,8 +104,12 @@
<column name="name" type="VARCHAR(255)">
<constraints nullable="false"/>
</column>
<column name="note" type="VARCHAR(255)"/>
<column name="remark" type="VARCHAR(255)"/>
<column name="note" type="VARCHAR(255)" defaultValue="">
<constraints nullable="false"/>
</column>
<column name="remark" type="VARCHAR(255)" defaultValue="">
<constraints nullable="false"/>
</column>
<column name="sample" type="INT">
<constraints nullable="false"/>
</column>