-- migrate:up
CREATE TABLE type_box (
    id INT AUTO_INCREMENT PRIMARY KEY, -- Primary key with auto-increment
    name VARCHAR(255) NOT NULL,        -- Name of the type box
    created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP, -- Timestamp for creation
    updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP -- Timestamp for updates
);

-- migrate:down
DROP TABLE IF EXISTS type_box;

