RGF_v81Down Method

Builds the operations that will migrate the database 'down'.

Definition

Namespace: Recrovit.RecroGridFramework.Migrations.Oracle
Assembly: Recrovit.RecroGrid (in Recrovit.RecroGrid.dll) Version: 8.4.1.24.0708.1
C#
protected override void Down(
	MigrationBuilder migrationBuilder
)

Parameters

migrationBuilder  MigrationBuilder
The MigrationBuilder that will build the operations.

Remarks

That is, builds the operations that will take the database from the state left in by this migration so that it returns to the state that it was in before this migration was applied.

This method must be overridden in each class that inherits from Migration if both 'up' and 'down' migrations are to be supported. If it is not overridden, then calling it will throw and it will not be possible to migrate in the 'down' direction.

See Database migrations for more information and examples.

See Also