gpt_id int not_null auto_increment comment(Primary key - unique identifier for each GPT interaction)
question text not_null comment(User question or prompt sent to GPT model)
response text not_null comment(GPT model response text)
date_added date default null comment(Timestamp when the interaction was recorded)
user_admin varchar(255) default null comment(Administrator username who initiated the interaction - null for system-generated)
audit_data json default null comment(Audit trail data - may include model, temperature, tokens, execution time)

--
primary gpt_id
idx_gpt_id gpt_id

##
engine innodb
character_set utf8mb4
collate utf8mb4_unicode_ci