Grokking the System Design Interview, Volume II
Vote
0% completed
Payment System: Database Schema
Step 5: Database Schema
Merchants
Stores merchant (business) account details. This table is relatively small and can be kept on a primary shard or globally.
| Field Name | Data Type | Description |
|---|---|---|
| merchant_id (PK) | BIGINT | Unique merchant identifier (primary key). |
| name | VARCHAR(255) | Merchant’s business name. |
.....
.....
.....
Like the course? Get enrolled and start learning!