mirror of
https://github.com/drakkan/sftpgo.git
synced 2025-11-23 22:04:50 +02:00
6 lines
139 B
PL/PgSQL
6 lines
139 B
PL/PgSQL
BEGIN;
|
|
--
|
|
-- Rename field public_key on user to public_keys
|
|
--
|
|
ALTER TABLE `users` CHANGE `public_key` `public_keys` longtext NULL;
|
|
COMMIT; |