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,