Skip to content

Support "remove field" in automatic migration generator #206

@m4tx

Description

@m4tx

We should support removing fields in the automatic migration generator.

The entry point for this is

#[must_use]
fn make_remove_field_operation(
&self,
_migration_model: &ModelInSource,
_migration_field: &Field,
) -> DynOperation {
todo!()
}
. This will also require adding a new OperationInner variant:
enum OperationInner {

Note that the "removed field" operation will need to store all the data about the removed field, too, so that an implementation of Operation::backwards can be created.

Metadata

Metadata

Assignees

Labels

enhancementNew feature or request

Projects

Status

Done

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions