-
Notifications
You must be signed in to change notification settings - Fork 0
Entity Design
Subhrodip Mohanta edited this page Jun 7, 2022
·
5 revisions
Column Name | Column Definition |
---|---|
id | Long - (PK) |
username | String (50) - (UNQ) |
password | String (50) |
meal_prefernce | Boolean (false = NON_VEG) |
deleted | Boolean |
createdAt | Long DATETIME(6) |
creadtedBy | String(30) |
updatedAt | Long DATETIME(6) |
updatedBy | String |
Column Name | Column Definition |
---|---|
id | Long - (PK) |
user | Long - (FK of User[id]) |
mealPrefernce | Boolean (false = NON_VEG) |
dayOfBooking | Date (ISO_FORMAT) |
claimed | Boolean (false = NOT) |
createdAt | Long DATETIME(6) |
creadtedBy | String(30) |
updatedAt | Long DATETIME(6) |
updatedBy | String |