rename last_quota_scan to last_quota_update

Existing databases must be updated using the script 20190728.sql
This commit is contained in:
Nicola Murino
2019-07-28 19:29:32 +02:00
parent 88fedd577d
commit 9987821003
9 changed files with 34 additions and 16 deletions

6
sql/pgsql/20190728.sql Normal file
View File

@@ -0,0 +1,6 @@
BEGIN;
--
-- Rename field last_quota_scan on user to last_quota_update
--
ALTER TABLE "users" RENAME COLUMN "last_quota_scan" TO "last_quota_update";
COMMIT;