Skip to content

Commit

Permalink
fix: Revert irrelevant changes
Browse files Browse the repository at this point in the history
  • Loading branch information
KShivendu committed Jun 27, 2023
1 parent cdc6949 commit 4d6a335
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/main/java/io/supertokens/storage/postgresql/Start.java
Original file line number Diff line number Diff line change
Expand Up @@ -1392,6 +1392,7 @@ public int countUsersEnabledTotpAndActiveSince(AppIdentifier appIdentifier, long
}
}

@Override
public int countUsersEnabledMfa(AppIdentifier appIdentifier) throws StorageQueryException {
try {
return ActiveUsersQueries.countUsersEnabledMfa(this, appIdentifier);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ public static Set<String> getValidFields() {
}

public String getTableSchema() {
return postgresql_table_schema.trim();
return postgresql_table_schema;
}

public int getConnectionPoolSize() {
Expand Down Expand Up @@ -211,8 +211,7 @@ public String getSessionInfoTable() {
}

public String getEmailPasswordUserToTenantTable() {
String tableName = "emailpassword_user_to_tenant";
return addSchemaAndPrefixToTableName(tableName);
return addSchemaAndPrefixToTableName("emailpassword_user_to_tenant");
}

public String getEmailPasswordUsersTable() {
Expand Down

0 comments on commit 4d6a335

Please sign in to comment.