mirror of
https://github.com/drakkan/sftpgo.git
synced 2026-09-20 03:17:47 +00:00
6 lines
163 B
PL/PgSQL
6 lines
163 B
PL/PgSQL
BEGIN;
|
|
--
|
|
-- Rename field last_quota_scan on user to last_quota_update
|
|
--
|
|
ALTER TABLE `users` CHANGE `last_quota_scan` `last_quota_update` bigint NOT NULL;
|
|
COMMIT; |