La note et la remarque d'une recette n'est plus nullable.
This commit is contained in:
parent
83edd57dd8
commit
9a4042a6d0
|
@ -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"
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue