https://www.erdcloud.com/d/7HkkZTyXtCfTAW7m6
UUID → OID
User
PK | user_id | INT | |
---|---|---|---|
전화번호 | user_phone_number | ||
아이디 | user_email | CHAR(50) | |
비밀번호 | user_password | ||
닉네임 | user_nickname | ||
지갑_list | user_walle_list | ||
Wallet
PK | wallet_id | INT | |
---|---|---|---|
지갑 이름 | wallet_name | ||
지갑 주소 | wallet_address | ||
Transaction (송금)
PK | transaction_id | INT | |
---|---|---|---|
가스당 가격 | transaction_gasprice | ||
가스량 | transaction_gas | ||
송금인? | transaction_sender_user | ||
수금인? | transaction_receiver_user | ||
금액 | transaction_value | ||
메모 | transaction_memo | ||
코인종류 (네트워크) | transaction_coin |
Friend
PK | friend_id | INT | |
---|---|---|---|
from | friend_follower_user | FROM→TO | |
to | friend_followee_user | TO→FROM | |
1 | 나를 친구추가한 사람을 봐야하나? | ||
2 | 내가 친구추가만 한 사람만 볼거면 USER에 LIST로 관리하는게 편하지않나? |