Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Creating tables
- Table registration {
- id int [pk, increment] // auto-increment
- first_name varchar(20)
- last_name varchar(20)
- gender enum('Male','Female')
- birthdate time
- blood_group int
- occupation int
- occupation_type var
- state int
- dist int
- sub_dist int
- village var(20)
- post_code var(6)
- email var
- first_mobile var
- second_mobile var
- status enum('Active','Inactive')
- verify enum('true','false')
- created_at timestamp
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement