mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-24 19:38:24 +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