-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
29 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# write postman link | ||
|
||
https://m27lab.postman.co/workspace/M27LAB~849f4e55-931f-4f55-96d9-fad5e24d1590/collection/12238877-777ce19b-5ed0-4a9d-ada9-74506e32d70e?action=share&source=copy-link&creator=12238877&active-environment=fed60369-7ea2-443c-b309-5a013b681d7d | ||
https://m27lab.postman.co/workspace/M27LAB~849f4e55-931f-4f55-96d9-fad5e24d1590/collection/12238877-777ce19b-5ed0-4a9d-ada9-74506e32d70e?action=share&creator=12238877&active-environment=12238877-fed60369-7ea2-443c-b309-5a013b681d7d |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,7 @@ | |
"appleboy", | ||
"bolditalics", | ||
"datetime", | ||
"dbml", | ||
"eturino", | ||
"expirable", | ||
"flushall", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
table user_table { | ||
id varchar(50) [pk, not null] | ||
full_name varchar(255) [not null] | ||
phone varchar(20) [unique] | ||
email varchar(255) [not null, unique] | ||
password varchar(255) [not null] | ||
gender enum('male','female') [not null, default: 'male'] | ||
avatar varchar(255) | ||
is_email_verified boolean [not null, default: false] | ||
is_super_admin boolean [not null, default: false] | ||
country_code varchar(5) [not null, default: 'BD'] | ||
city varchar(50) | ||
state varchar(50) | ||
zip_code varchar(50) | ||
address varchar(255) | ||
time_zone varchar(50) [not null, default: 'Asia/Dhaka'] | ||
fcm_token varchar(255) | ||
last_logged_in datetime [not null, default: `(CURRENT_TIMESTAMP)`] | ||
created_at datetime [not null, default: `(CURRENT_TIMESTAMP)`] | ||
} |