-
Notifications
You must be signed in to change notification settings - Fork 667
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to get rid of "Description:" in every column description? #1783
Comments
The same is happening to. me. I think is a bug that was introduced with the commit b8dd18d. |
@azerios Would you be able to look at this issue for me? |
I'll try to address this this week as part of shipping 6.0. Very sorry I didn't catch this in review. |
I'm almost done fixing this. The remaining issue is that the new AdditionalDescriptions feature doesn't support four types of expressions that otherwise support expressions: fluentmigrator/src/FluentMigrator.Runner.Core/Generators/IDescriptionGenerator.cs Lines 9 to 14 in 2143451
|
I've worked on this in my local but not yet ready to ship the full fix. |
Аfter upgrading to FluentMigrator 5.2.0 in every column description, generated via WithColumnDescription(..) there is a prefix "Description:". We don't use AdditionalColumnDescriptions.
Is it possible to disable this new feature somehow? Or use a feature flag? I'ts hardcoded in GenericDescriptionGenerator.GenerateDescriptionStatements:
string initialDescriptionStatement = GenerateColumnDescription( "Description", expression.SchemaName, expression.TableName, column.Name, "Description:" + column.ColumnDescription);
The text was updated successfully, but these errors were encountered: