How can I configure my table in MySQL Workbench to auto generate a UUID on INSERT?
I have set the column as VARCHAR(128), PK, NN, G with the default expression as UUID(). When I create a record the ID is 'UUID()'.
How can I get the database to generate UUID's automagically on INSERT? All the examples I see are auto-increment but UUID's are character strings so I can't use auto-increment.