Skip to content

Commit

Permalink
places schema references in more natural position
Browse files Browse the repository at this point in the history
  • Loading branch information
kezike committed Feb 29, 2024
1 parent f7d6cbe commit f919c48
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,10 @@ The `createStatusManager` function is the only exported pure function of this li
| `databaseUsername` | username of user with read/write privileges on the database instance used to manage credential status data | string | yes (if `databaseUrl` is not set) |
| `databasePassword` | password associated with `databaseUsername` | string | yes (if `databaseUrl` is not set) |
| `databaseName` | name of the database instance used to manage credential status data | string | no (default: `credentialStatus`) |
| `statusCredentialTableName` | name of the database table used to manage status credentials | string | no (default: `StatusCredential`; [schema](#statuscredential)) |
| `configTableName` | name of the database table used to manage application configuration | string | no (default: `Config`; [schema](#config)) |
| `eventTableName` | name of the database table used to manage credential status events | string | no (default: `Event`; [schema](#event)) |
| `credentialEventTableName` | name of the database table used to manage the latest status event for a given credential | string | no (default: `CredentialEvent`; [schema](#credentialevent)) |
| `statusCredentialTableName` | name of the database table used to manage status credentials ([schema](#statuscredential)) | string | no (default: `StatusCredential`) |
| `configTableName` | name of the database table used to manage application configuration ([schema](#config)) | string | no (default: `Config`) |
| `eventTableName` | name of the database table used to manage credential status events ([schema](#event)) | string | no (default: `Event`) |
| `credentialEventTableName` | name of the database table used to manage the latest status event for a given credential ([schema](#credentialevent)) | string | no (default: `CredentialEvent`) |
| `autoDeployDatabase` | whether or not to automatically create the database (`databaseName`) and the initial tables (`statusCredentialTableName` and `configTableName`) | string | no (default: `true`) |
| `didMethod` | name of the DID method used for signing | `key` \| `web` | yes |
| `didSeed` | seed used to deterministically generate DID | string | yes |
Expand Down

0 comments on commit f919c48

Please sign in to comment.