Rename column 'value' to 'value_'

In sql 'value' is a reserved word and should not be used (unless
quoted). Postgresql and MariaDB are ok with it, but the new version of
h2 is now complaining.
This commit is contained in:
eikek 2022-08-12 12:59:13 +02:00
parent aac6f69ea2
commit e39ddc7c17
4 changed files with 4 additions and 1 deletions

View File

@ -0,0 +1 @@
alter table "contact" rename column "value" to "value_";

View File

@ -0,0 +1 @@
alter table `contact` rename column `value` to `value_`;

View File

@ -0,0 +1 @@
alter table "contact" rename column "value" to "value_";

View File

@ -30,7 +30,7 @@ object RContact {
val tableName = "contact"
val contactId = Column[Ident]("contactid", this)
val value = Column[String]("value", this)
val value = Column[String]("value_", this)
val kind = Column[ContactKind]("kind", this)
val personId = Column[Ident]("pid", this)
val orgId = Column[Ident]("oid", this)