AlterTable constructor
const
AlterTable({})
Operation carrying every intra-table change as one unit: the full old and new definitions, detected column renames, the table's indexes on both sides, and the tables whose foreign keys reference it.
Implementation
const AlterTable({
required this.oldTable,
required this.newTable,
this.renamedColumns = const {},
this.oldIndexes = const [],
this.newIndexes = const [],
this.referencedBy = const [],
});