From d3d8933024b81aceab5514bef91a979d3794b7c7 Mon Sep 17 00:00:00 2001 From: "Andrey.Tarashevskiy" Date: Tue, 19 Oct 2021 10:15:08 +0300 Subject: [PATCH] Remove unneeded part of the test --- .../sql/tests/shared/ddl/CreateMissingTablesAndColumnsTests.kt | 1 - 1 file changed, 1 deletion(-) diff --git a/exposed-tests/src/test/kotlin/org/jetbrains/exposed/sql/tests/shared/ddl/CreateMissingTablesAndColumnsTests.kt b/exposed-tests/src/test/kotlin/org/jetbrains/exposed/sql/tests/shared/ddl/CreateMissingTablesAndColumnsTests.kt index bff956fc77..c900926adb 100644 --- a/exposed-tests/src/test/kotlin/org/jetbrains/exposed/sql/tests/shared/ddl/CreateMissingTablesAndColumnsTests.kt +++ b/exposed-tests/src/test/kotlin/org/jetbrains/exposed/sql/tests/shared/ddl/CreateMissingTablesAndColumnsTests.kt @@ -193,7 +193,6 @@ class CreateMissingTablesAndColumnsTests : DatabaseTestsBase() { val id = integer("idcol") val col = integer("col").nullable() val strcol = varchar("strcol", 255).nullable() - val bool = bool("bool").default(false).nullable() // check no changes for boolean override val primaryKey = PrimaryKey(id) }