correct typo and rename fileType to fieldType in AlterColumn#7748
correct typo and rename fileType to fieldType in AlterColumn#7748cragone wants to merge 1 commit intogo-gorm:masterfrom
Conversation
|
Fix This PR makes a small clarity-focused change in No functional behavior, SQL generation, or API surface is changed. The executed statement and arguments remain equivalent, with only identifier naming and inline documentation improved. Key Changes• Updated Affected Areas• This summary was automatically generated by @propel-code-bot |
Renames the misnamed 'fileType' to 'fieldType', as well as fixed the typo for column' to column's.
What did this pull request do?
AlterColumnmethod description, was missing an s for the column's ownership of its type.fileTypetofieldTypeas it refers to a column or a field not a file type.User Case Description
Any reader of
AlterColumnwould be confused by a variable calledfileTypein a database migration context.fieldTypematches the intent.