mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-10-05 10:47:13 +00:00
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:
@@ -0,0 +1 @@
|
||||
alter table "contact" rename column "value" to "value_";
|
@@ -0,0 +1 @@
|
||||
alter table `contact` rename column `value` to `value_`;
|
@@ -0,0 +1 @@
|
||||
alter table "contact" rename column "value" to "value_";
|
Reference in New Issue
Block a user