CurrencyRate Table

CurrencyRate stores the exchange rates assigned to any currency.

Note: To cater for multi-tenant mode, this table may contain data for multiple tenants. Access requires that the database TenantID has been set in the SQL Server connection context information. That setting filters an underlying table to produce this view of data for the single, selected tenant.
Table 1. Database columns for CurrencyRate table

Database Column

Details

CurrencyRateID

Type: integer. Key. Generated ID

Unique identifier for each record.

SnapshotID

Type: integer. Key

Snapshot associated with this exchange rate. Foreign key to the CurrencyRateSnapshot table.

CurrencyID

Type: integer. Key

Currency associated with this exchange rate. Foreign key to the Currency table.

Rate

Type: decimal

Exchange rate assigned to the currency for the selected snapshot.

UpdatedUser

Type: text (max 256 characters). Nullable

Operator who last modified the record.

UpdatedDate

Type: datetime. Nullable

Date that the record was last modified.