CREATE TABLE quick_test (
    test_id     INT     NOT NULL    AUTO_INCREMENT,
    test_val    TEXT,
    PRIMARY KEY (test_id)
);