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_";