antares
                                
                                 antares copied to clipboard
                                
                                    antares copied to clipboard
                            
                            
                            
                        Cannot change schema of MariaDB table that contains SET
Describe the bug When updating any change to the schema of a SQL table that contains a SET, the update fails.
To Reproduce Steps to reproduce the behavior:
- Create a table with a set:
CREATE TABLE `test` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `status` set('PUBLISHED','DELETED')  NOT NULL DEFAULT 'PUBLISHED',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
- Try to change a column in Antares
- Click save.
- See error
Application (please complete the following information):
- App client: MariaDB
- App version: 0.7.21
Environment (please complete the following information):
- OS name: Ubuntu 23.10
For this problem I should have a commit ready in the next few hours.