Lihat semua kolom (8)
- id : bigint(20) unsigned (PK) [NOT NULL]
- merchant_id : varchar(255) (FK) [NOT NULL]
- merchant_name : varchar(255) [NOT NULL]
- email : varchar(255)
- phone : varchar(255)
- address : text
- created_at : timestamp
- updated_at : timestamp
Visualisasi skema inti untuk QRIS transaction processing, merchant hierarchy, dan settlement tracking.
Cara Baca Halaman
Total 24h
5
Success Rate
80.00%
Active Merchants
1
Outbox Pending/Failed
0
merchants
1
stores
2
terminals
2
qris_transactions
5
callback_logs
4
settlements
2
transaction_status_histories
4
transaction_query_logs
2
merchant_notification_outboxes
3
refunds
1
erDiagram
QRIS_TRANSACTIONS ||--o{ CALLBACK_LOGS : "transaction_id"
QRIS_TRANSACTIONS ||--|| MERCHANT_NOTIFICATION_OUTBOXES : "transaction_id"
MERCHANTS ||--o{ QRIS_TRANSACTIONS : "merchant_id"
STORES ||--o{ QRIS_TRANSACTIONS : "store_id"
TERMINALS ||--o{ QRIS_TRANSACTIONS : "terminal_id"
USERS ||--o{ QRIS_TRANSACTIONS : "user_id"
QRIS_TRANSACTIONS ||--o{ REFUNDS : "transaction_id"
QRIS_TRANSACTIONS ||--|| SETTLEMENTS : "transaction_id"
MERCHANTS ||--o{ STORES : "merchant_id"
STORES ||--o{ TERMINALS : "store_id"
QRIS_TRANSACTIONS ||--o{ TRANSACTION_QUERY_LOGS : "transaction_id"
QRIS_TRANSACTIONS ||--o{ TRANSACTION_STATUS_HISTORIES : "transaction_id"
callback_logs.transaction_id
belongs to (1:N)
qris_transactions.id
merchant_notification_outboxes.transaction_id
belongs to (1:1)
qris_transactions.id
qris_transactions.merchant_id
belongs to (1:N)
merchants.id
qris_transactions.store_id
belongs to (1:N)
stores.id
qris_transactions.terminal_id
belongs to (1:N)
terminals.id
qris_transactions.user_id
belongs to (1:N)
users.id
refunds.transaction_id
belongs to (1:N)
qris_transactions.id
settlements.transaction_id
belongs to (1:1)
qris_transactions.id
stores.merchant_id
belongs to (1:N)
merchants.id
terminals.store_id
belongs to (1:N)
stores.id
transaction_query_logs.transaction_id
belongs to (1:N)
qris_transactions.id
transaction_status_histories.transaction_id
belongs to (1:N)
qris_transactions.id