How do I add a comment to a column. In sql I do this:
ALTER TABLE Tabela MODIFY COLUMN 'nome' varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT 'Teste' AFTER 'nome';
What do I do in entity framework core fluent api?
How do I add a comment to a column. In sql I do this:
ALTER TABLE Tabela MODIFY COLUMN 'nome' varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT 'Teste' AFTER 'nome';
What do I do in entity framework core fluent api?