From 11d5b2f2baec4f97e0f13da3b548267c0c356145 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Wed, 2 Oct 2024 22:37:28 +0530 Subject: [PATCH] feat: proxy url, username & password --- server/src/models/User.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/server/src/models/User.ts b/server/src/models/User.ts index fd23448a..6430c50f 100644 --- a/server/src/models/User.ts +++ b/server/src/models/User.ts @@ -47,6 +47,18 @@ User.init( type: DataTypes.STRING, allowNull: true, }, + proxy_url: { + type: DataTypes.STRING, + allowNull: true, + }, + proxy_username: { + type: DataTypes.STRING, + allowNull: true, + }, + proxy_password: { + type: DataTypes.STRING, + allowNull: true, + }, }, { sequelize,