Hier ist die eigentliche Syntax. Stellen Sie sicher, dass Sie auch die Nullfähigkeit entsprechend festlegen:
ALTER TABLE your_table
MODIFY COLUMN your_column DOUBLE NULL;
oder
ALTER TABLE your_table
MODIFY COLUMN your_column DOUBLE NOT NULL;
Hier ist die eigentliche Syntax. Stellen Sie sicher, dass Sie auch die Nullfähigkeit entsprechend festlegen:
ALTER TABLE your_table
MODIFY COLUMN your_column DOUBLE NULL;
oder
ALTER TABLE your_table
MODIFY COLUMN your_column DOUBLE NOT NULL;