3 lines
483 B
MySQL
Raw Normal View History

2025-04-07 12:46:37 +00:00
CREATE TABLE db.Visa_application(id BIGINT NOT NULL AUTO_INCREMENT, passport_number int, email VARCHAR(400), date_of_birth Date, visa_duration VARCHAR(400), passport_expiry_date Date, phone_number VARCHAR(400), gender VARCHAR(400), travel_end_date Date, visa_processing VARCHAR(400), profession VARCHAR(400), visa_entry_type VARCHAR(400), travel_start_date Date, referrer VARCHAR(400), passport_issue_date Date, birth_place VARCHAR(400), visa_cost VARCHAR(400), PRIMARY KEY (id));