mirror of
https://github.com/drakkan/sftpgo.git
synced 2026-03-15 06:45:50 +01:00
Login can be restricted to specific ranges of IP address or to a specific IP address. Please apply the appropriate SQL upgrade script to add the filter field to your database. The filter database field will allow to add other filters without requiring a new database migration
6 lines
No EOL
101 B
PL/PgSQL
6 lines
No EOL
101 B
PL/PgSQL
BEGIN;
|
|
--
|
|
-- Add field filters to user
|
|
--
|
|
ALTER TABLE "users" ADD COLUMN "filters" text NULL;
|
|
COMMIT; |