mirror of
https://github.com/drakkan/sftpgo.git
synced 2025-12-06 14:20:55 +03: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; |