In typeorm, if I rename an entity's column from:
@Column()
address: string
to
@Column()
userAddress: string
Does it know that I am renaming a column when I run the command
typeorm migration:generate?
Will I lose any data when I run the migration?