Question 21
Consider the following SQL create statement.
CREATE TABLE car ( car_id INTEGER NOT NULL, model INTEGER NOT NULL, name VARCHAR(50), mfd_date DATETIME NOT NULL, description VARCHAR, PRIMARY KEY (car_id), UNIQUE (model), UNIQUE (name))Which of the following flask_sqlalchemy models will create exactly the same table as created by the above SQL command?